# C1.Win.C1Input.ParseInfo

## Content

<div class="doc-site-dotnet-api-container">



  <h1 id="C1_Win_C1Input_ParseInfo" data-uid="C1.Win.C1Input.ParseInfo" class="text-break">ParseInfo Class
</h1>
  <div class="markdown level0 summary"><p>Contains settings affecting parsing, that is, converting a string to the required data type.</p>
</div>
  <div class="markdown level0 conceptual"></div>
  <div class="inheritance">
    <h5>Inheritance</h5>
    <div class="level0"><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.object">object</a></div>
    <div class="level1"><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.marshalbyrefobject">MarshalByRefObject</a></div>
    <div class="level2"><span class="xref">ParseInfo</span></div>
  </div>
  <div class="implements">
    <h5>Implements</h5>
    <div><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.idisposable">IDisposable</a></div>
    <div><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.componentmodel.icustomtypedescriptor">ICustomTypeDescriptor</a></div>
  </div>
  <h6><strong>Namespace</strong>: <a class="xref" href="C1.Win.C1Input.html">C1.Win.C1Input</a></h6>
  <h6><strong>Assembly</strong>: C1.Win.C1Input.4.8.dll</h6>
  <h5 id="C1_Win_C1Input_ParseInfo_syntax">Syntax</h5>
  <div class="codewrapper">
    <pre><code class="lang-csharp hljs">[TypeConverter(typeof(GenericInheritConverter))]
public class ParseInfo : MarshalByRefObject, IDisposable, ICustomTypeDescriptor</code></pre>
  </div>
  <div class="codewrapper">
    <pre><code class="lang-vbnet hljs">&lt;TypeConverter(GetType(GenericInheritConverter))&gt;
Public Class ParseInfo
    Inherits MarshalByRefObject
    Implements IDisposable, ICustomTypeDescriptor</code></pre>
  </div>
  <h3 id="properties">Properties
</h3>
  <table class="table table-bordered table-condensed">
    <thead>
      <tr>
        <th>Name</th>
        <th>Description</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td id="C1_Win_C1Input_ParseInfo_CaseSensitive" data-uid="C1.Win.C1Input.ParseInfo.CaseSensitive">
          <a class="xref" href="C1.Win.C1Input.ParseInfo.CaseSensitive.html#C1_Win_C1Input_ParseInfo_CaseSensitive">CaseSensitive</a>
        </td>
        <td class="markdown level1 summary"><p>True if string comparisons are case-sensitive; otherwise, False.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Input_ParseInfo_CustomFormat" data-uid="C1.Win.C1Input.ParseInfo.CustomFormat">
          <a class="xref" href="C1.Win.C1Input.ParseInfo.CustomFormat.html#C1_Win_C1Input_ParseInfo_CustomFormat">CustomFormat</a>
        </td>
        <td class="markdown level1 summary"><p>Custom format specifier (in parsing used for DateTime and Boolean types only).</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Input_ParseInfo_DateTimeStyle" data-uid="C1.Win.C1Input.ParseInfo.DateTimeStyle">
          <a class="xref" href="C1.Win.C1Input.ParseInfo.DateTimeStyle.html#C1_Win_C1Input_ParseInfo_DateTimeStyle">DateTimeStyle</a>
        </td>
        <td class="markdown level1 summary"><p>Determines the styles (flags) permitted in input strings representing date/time.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Input_ParseInfo_EmptyAsNull" data-uid="C1.Win.C1Input.ParseInfo.EmptyAsNull">
          <a class="xref" href="C1.Win.C1Input.ParseInfo.EmptyAsNull.html#C1_Win_C1Input_ParseInfo_EmptyAsNull">EmptyAsNull</a>
        </td>
        <td class="markdown level1 summary"><p>If True, empty strings are interpreted as null values (DbNull).</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Input_ParseInfo_ErrorMessage" data-uid="C1.Win.C1Input.ParseInfo.ErrorMessage">
          <a class="xref" href="C1.Win.C1Input.ParseInfo.ErrorMessage.html#C1_Win_C1Input_ParseInfo_ErrorMessage">ErrorMessage</a>
        </td>
        <td class="markdown level1 summary"><p>Error message shown in the standard message box and/or in the exception.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Input_ParseInfo_FormatType" data-uid="C1.Win.C1Input.ParseInfo.FormatType">
          <a class="xref" href="C1.Win.C1Input.ParseInfo.FormatType.html#C1_Win_C1Input_ParseInfo_FormatType">FormatType</a>
        </td>
        <td class="markdown level1 summary"><p>The format used for parsing.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Input_ParseInfo_Inherit" data-uid="C1.Win.C1Input.ParseInfo.Inherit">
          <a class="xref" href="C1.Win.C1Input.ParseInfo.Inherit.html#C1_Win_C1Input_ParseInfo_Inherit">Inherit</a>
        </td>
        <td class="markdown level1 summary"><p>Manages inheritance of the ParseInfo properties from the host control properties.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Input_ParseInfo_NullText" data-uid="C1.Win.C1Input.ParseInfo.NullText">
          <a class="xref" href="C1.Win.C1Input.ParseInfo.NullText.html#C1_Win_C1Input_ParseInfo_NullText">NullText</a>
        </td>
        <td class="markdown level1 summary"><p>The string representing DbNull value.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Input_ParseInfo_NumberStyle" data-uid="C1.Win.C1Input.ParseInfo.NumberStyle">
          <a class="xref" href="C1.Win.C1Input.ParseInfo.NumberStyle.html#C1_Win_C1Input_ParseInfo_NumberStyle">NumberStyle</a>
        </td>
        <td class="markdown level1 summary"><p>Determines the styles (flags) permitted in input strings representing numbers.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Input_ParseInfo_TrimEnd" data-uid="C1.Win.C1Input.ParseInfo.TrimEnd">
          <a class="xref" href="C1.Win.C1Input.ParseInfo.TrimEnd.html#C1_Win_C1Input_ParseInfo_TrimEnd">TrimEnd</a>
        </td>
        <td class="markdown level1 summary"><p>If True, trailing spaces are removed before parsing.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Input_ParseInfo_TrimStart" data-uid="C1.Win.C1Input.ParseInfo.TrimStart">
          <a class="xref" href="C1.Win.C1Input.ParseInfo.TrimStart.html#C1_Win_C1Input_ParseInfo_TrimStart">TrimStart</a>
        </td>
        <td class="markdown level1 summary"><p>If True, leading spaces are removed before parsing.</p>
</td>
      </tr>
    </tbody>
  </table>
  <h3 id="methods">Methods
</h3>
  <table class="table table-bordered table-condensed">
    <thead>
      <tr>
        <th>Name</th>
        <th>Description</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td id="C1_Win_C1Input_ParseInfo_IsTextDbNull_System_String_System_Globalization_CultureInfo_" data-uid="C1.Win.C1Input.ParseInfo.IsTextDbNull(System.String,System.Globalization.CultureInfo)">
          <a class="xref" href="C1.Win.C1Input.ParseInfo.IsTextDbNull.html#C1_Win_C1Input_ParseInfo_IsTextDbNull_System_String_System_Globalization_CultureInfo_">IsTextDbNull(string, CultureInfo)</a>
        </td>
        <td class="markdown level1 summary"><p>Returns True if the argument represents a null value (DBNull).</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Input_ParseInfo_Parse_System_String_System_Type_System_Object__C1_Win_C1Input_ErrorInfo_" data-uid="C1.Win.C1Input.ParseInfo.Parse(System.String,System.Type,System.Object@,C1.Win.C1Input.ErrorInfo)">
          <a class="xref" href="C1.Win.C1Input.ParseInfo.Parse.html#C1_Win_C1Input_ParseInfo_Parse_System_String_System_Type_System_Object__C1_Win_C1Input_ErrorInfo_">Parse(string, Type, out object, ErrorInfo)</a>
        </td>
        <td class="markdown level1 summary"><p>Converts text to the specified data type.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Input_ParseInfo_ParseBoolean_System_String_C1_Win_C1Input_FormatTypeEnum_System_Globalization_CultureInfo_" data-uid="C1.Win.C1Input.ParseInfo.ParseBoolean(System.String,C1.Win.C1Input.FormatTypeEnum,System.Globalization.CultureInfo)">
          <a class="xref" href="C1.Win.C1Input.ParseInfo.ParseBoolean.html#C1_Win_C1Input_ParseInfo_ParseBoolean_System_String_C1_Win_C1Input_FormatTypeEnum_System_Globalization_CultureInfo_">ParseBoolean(string, FormatTypeEnum, CultureInfo)</a>
        </td>
        <td class="markdown level1 summary"><p>Converts the text to a Boolean value.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Input_ParseInfo_ParseDateTime_System_String_C1_Win_C1Input_FormatTypeEnum_System_Globalization_CultureInfo_" data-uid="C1.Win.C1Input.ParseInfo.ParseDateTime(System.String,C1.Win.C1Input.FormatTypeEnum,System.Globalization.CultureInfo)">
          <a class="xref" href="C1.Win.C1Input.ParseInfo.ParseDateTime.html#C1_Win_C1Input_ParseInfo_ParseDateTime_System_String_C1_Win_C1Input_FormatTypeEnum_System_Globalization_CultureInfo_">ParseDateTime(string, FormatTypeEnum, CultureInfo)</a>
        </td>
        <td class="markdown level1 summary"><p>Converts text to a value using one of DateTime formats.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Input_ParseInfo_ParseFixed_System_String_C1_Win_C1Input_FormatTypeEnum_System_Globalization_CultureInfo_" data-uid="C1.Win.C1Input.ParseInfo.ParseFixed(System.String,C1.Win.C1Input.FormatTypeEnum,System.Globalization.CultureInfo)">
          <a class="xref" href="C1.Win.C1Input.ParseInfo.ParseFixed.html#C1_Win_C1Input_ParseInfo_ParseFixed_System_String_C1_Win_C1Input_FormatTypeEnum_System_Globalization_CultureInfo_">ParseFixed(string, FormatTypeEnum, CultureInfo)</a>
        </td>
        <td class="markdown level1 summary"><p>Converts the text to a Decimal value using a fixed numeric format.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Input_ParseInfo_ParseFloat_System_String_C1_Win_C1Input_FormatTypeEnum_System_Globalization_CultureInfo_" data-uid="C1.Win.C1Input.ParseInfo.ParseFloat(System.String,C1.Win.C1Input.FormatTypeEnum,System.Globalization.CultureInfo)">
          <a class="xref" href="C1.Win.C1Input.ParseInfo.ParseFloat.html#C1_Win_C1Input_ParseInfo_ParseFloat_System_String_C1_Win_C1Input_FormatTypeEnum_System_Globalization_CultureInfo_">ParseFloat(string, FormatTypeEnum, CultureInfo)</a>
        </td>
        <td class="markdown level1 summary"><p>Converts the text to a Double value using a float numeric format.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Input_ParseInfo_ParseInteger_System_String_C1_Win_C1Input_FormatTypeEnum_System_Globalization_CultureInfo_" data-uid="C1.Win.C1Input.ParseInfo.ParseInteger(System.String,C1.Win.C1Input.FormatTypeEnum,System.Globalization.CultureInfo)">
          <a class="xref" href="C1.Win.C1Input.ParseInfo.ParseInteger.html#C1_Win_C1Input_ParseInfo_ParseInteger_System_String_C1_Win_C1Input_FormatTypeEnum_System_Globalization_CultureInfo_">ParseInteger(string, FormatTypeEnum, CultureInfo)</a>
        </td>
        <td class="markdown level1 summary"><p>Converts the text to Int64 value using an integer numeric format.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Input_ParseInfo_Reset" data-uid="C1.Win.C1Input.ParseInfo.Reset">
          <a class="xref" href="C1.Win.C1Input.ParseInfo.Reset.html#C1_Win_C1Input_ParseInfo_Reset">Reset()</a>
        </td>
        <td class="markdown level1 summary"><p>Resets whole ParseInfo property of base control</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Input_ParseInfo_ResetCaseSensitive" data-uid="C1.Win.C1Input.ParseInfo.ResetCaseSensitive">
          <a class="xref" href="C1.Win.C1Input.ParseInfo.ResetCaseSensitive.html#C1_Win_C1Input_ParseInfo_ResetCaseSensitive">ResetCaseSensitive()</a>
        </td>
        <td class="markdown level1 summary"><p>This method is for internal use only.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Input_ParseInfo_ResetCustomFormat" data-uid="C1.Win.C1Input.ParseInfo.ResetCustomFormat">
          <a class="xref" href="C1.Win.C1Input.ParseInfo.ResetCustomFormat.html#C1_Win_C1Input_ParseInfo_ResetCustomFormat">ResetCustomFormat()</a>
        </td>
        <td class="markdown level1 summary"><p>This method is for internal use only.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Input_ParseInfo_ResetEmptyAsNull" data-uid="C1.Win.C1Input.ParseInfo.ResetEmptyAsNull">
          <a class="xref" href="C1.Win.C1Input.ParseInfo.ResetEmptyAsNull.html#C1_Win_C1Input_ParseInfo_ResetEmptyAsNull">ResetEmptyAsNull()</a>
        </td>
        <td class="markdown level1 summary"><p>This method is for internal use only.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Input_ParseInfo_ResetErrorMessage" data-uid="C1.Win.C1Input.ParseInfo.ResetErrorMessage">
          <a class="xref" href="C1.Win.C1Input.ParseInfo.ResetErrorMessage.html#C1_Win_C1Input_ParseInfo_ResetErrorMessage">ResetErrorMessage()</a>
        </td>
        <td class="markdown level1 summary"><p>This method is for internal use only.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Input_ParseInfo_ResetFormatType" data-uid="C1.Win.C1Input.ParseInfo.ResetFormatType">
          <a class="xref" href="C1.Win.C1Input.ParseInfo.ResetFormatType.html#C1_Win_C1Input_ParseInfo_ResetFormatType">ResetFormatType()</a>
        </td>
        <td class="markdown level1 summary"><p>This method is for internal use only.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Input_ParseInfo_ResetNullText" data-uid="C1.Win.C1Input.ParseInfo.ResetNullText">
          <a class="xref" href="C1.Win.C1Input.ParseInfo.ResetNullText.html#C1_Win_C1Input_ParseInfo_ResetNullText">ResetNullText()</a>
        </td>
        <td class="markdown level1 summary"><p>This method is for internal use only.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Input_ParseInfo_ResetTrimEnd" data-uid="C1.Win.C1Input.ParseInfo.ResetTrimEnd">
          <a class="xref" href="C1.Win.C1Input.ParseInfo.ResetTrimEnd.html#C1_Win_C1Input_ParseInfo_ResetTrimEnd">ResetTrimEnd()</a>
        </td>
        <td class="markdown level1 summary"><p>This method is for internal use only.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Input_ParseInfo_ResetTrimStart" data-uid="C1.Win.C1Input.ParseInfo.ResetTrimStart">
          <a class="xref" href="C1.Win.C1Input.ParseInfo.ResetTrimStart.html#C1_Win_C1Input_ParseInfo_ResetTrimStart">ResetTrimStart()</a>
        </td>
        <td class="markdown level1 summary"><p>This method is for internal use only.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Input_ParseInfo_ShouldSerializeCaseSensitive" data-uid="C1.Win.C1Input.ParseInfo.ShouldSerializeCaseSensitive">
          <a class="xref" href="C1.Win.C1Input.ParseInfo.ShouldSerializeCaseSensitive.html#C1_Win_C1Input_ParseInfo_ShouldSerializeCaseSensitive">ShouldSerializeCaseSensitive()</a>
        </td>
        <td class="markdown level1 summary"><p>This method is for internal use only.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Input_ParseInfo_ShouldSerializeCustomFormat" data-uid="C1.Win.C1Input.ParseInfo.ShouldSerializeCustomFormat">
          <a class="xref" href="C1.Win.C1Input.ParseInfo.ShouldSerializeCustomFormat.html#C1_Win_C1Input_ParseInfo_ShouldSerializeCustomFormat">ShouldSerializeCustomFormat()</a>
        </td>
        <td class="markdown level1 summary"><p>This method is for internal use only.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Input_ParseInfo_ShouldSerializeEmptyAsNull" data-uid="C1.Win.C1Input.ParseInfo.ShouldSerializeEmptyAsNull">
          <a class="xref" href="C1.Win.C1Input.ParseInfo.ShouldSerializeEmptyAsNull.html#C1_Win_C1Input_ParseInfo_ShouldSerializeEmptyAsNull">ShouldSerializeEmptyAsNull()</a>
        </td>
        <td class="markdown level1 summary"><p>This method is for internal use only.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Input_ParseInfo_ShouldSerializeErrorMessage" data-uid="C1.Win.C1Input.ParseInfo.ShouldSerializeErrorMessage">
          <a class="xref" href="C1.Win.C1Input.ParseInfo.ShouldSerializeErrorMessage.html#C1_Win_C1Input_ParseInfo_ShouldSerializeErrorMessage">ShouldSerializeErrorMessage()</a>
        </td>
        <td class="markdown level1 summary"><p>This method is for internal use only.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Input_ParseInfo_ShouldSerializeFormatType" data-uid="C1.Win.C1Input.ParseInfo.ShouldSerializeFormatType">
          <a class="xref" href="C1.Win.C1Input.ParseInfo.ShouldSerializeFormatType.html#C1_Win_C1Input_ParseInfo_ShouldSerializeFormatType">ShouldSerializeFormatType()</a>
        </td>
        <td class="markdown level1 summary"><p>This method is for internal use only.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Input_ParseInfo_ShouldSerializeNullText" data-uid="C1.Win.C1Input.ParseInfo.ShouldSerializeNullText">
          <a class="xref" href="C1.Win.C1Input.ParseInfo.ShouldSerializeNullText.html#C1_Win_C1Input_ParseInfo_ShouldSerializeNullText">ShouldSerializeNullText()</a>
        </td>
        <td class="markdown level1 summary"><p>This method is for internal use only.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Input_ParseInfo_ShouldSerializeTrimEnd" data-uid="C1.Win.C1Input.ParseInfo.ShouldSerializeTrimEnd">
          <a class="xref" href="C1.Win.C1Input.ParseInfo.ShouldSerializeTrimEnd.html#C1_Win_C1Input_ParseInfo_ShouldSerializeTrimEnd">ShouldSerializeTrimEnd()</a>
        </td>
        <td class="markdown level1 summary"><p>This method is for internal use only.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Input_ParseInfo_ShouldSerializeTrimStart" data-uid="C1.Win.C1Input.ParseInfo.ShouldSerializeTrimStart">
          <a class="xref" href="C1.Win.C1Input.ParseInfo.ShouldSerializeTrimStart.html#C1_Win_C1Input_ParseInfo_ShouldSerializeTrimStart">ShouldSerializeTrimStart()</a>
        </td>
        <td class="markdown level1 summary"><p>This method is for internal use only.</p>
</td>
      </tr>
    </tbody>
  </table>

</div>
