# C1.Win.C1Input.NumberStyleFlags

## Content

<div class="doc-site-dotnet-api-container">




  <h1 id="C1_Win_C1Input_NumberStyleFlags" data-uid="C1.Win.C1Input.NumberStyleFlags" class="text-break">NumberStyleFlags Enum
</h1>
  <div class="markdown level0 summary"><p>Used by ParseInfo.NumberStyle property.</p>
</div>
  <div class="markdown level0 conceptual"></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_NumberStyleFlags_syntax">Syntax</h5>
  <div class="codewrapper">
    <pre><code class="lang-csharp hljs">[Flags]
[TypeConverter(typeof(NumberStylesConverter))]
public enum NumberStyleFlags</code></pre>
  </div>
  <div class="codewrapper">
    <pre><code class="lang-vbnet hljs">&lt;Flags&gt;
&lt;TypeConverter(GetType(NumberStylesConverter))&gt;
Public Enum NumberStyleFlags</code></pre>
  </div>
  <h3 id="fields">Fields
</h3>
  <table class="table table-bordered table-condensed">
    <thead>
      <tr>
        <th>Name</th>
        <th>Description</th>
      </tr>
    <thead>
    </thead></thead><tbody>
      <tr>
        <td id="C1_Win_C1Input_NumberStyleFlags_AllowCurrencySymbol">AllowCurrencySymbol</td>
        <td><p>Indicates that the numeric string is parsed as currency if it contains a currency symbol; otherwise, it is parsed as a number.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Input_NumberStyleFlags_AllowDecimalPoint">AllowDecimalPoint</td>
        <td><p>Indicates that the numeric string can have a decimal point.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Input_NumberStyleFlags_AllowExponent">AllowExponent</td>
        <td><p>Indicates that the numeric string can be in exponential notation.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Input_NumberStyleFlags_AllowHexSpecifier">AllowHexSpecifier</td>
        <td><p>Indicates that the numeric string can have notation that signifies that the number is hexadecimal.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Input_NumberStyleFlags_AllowLeadingSign">AllowLeadingSign</td>
        <td><p>Indicates that the numeric string can have a leading sign.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Input_NumberStyleFlags_AllowLeadingWhite">AllowLeadingWhite</td>
        <td><p>Indicates that a leading white-space character is ignored during parsing.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Input_NumberStyleFlags_AllowParentheses">AllowParentheses</td>
        <td><p>Indicates that the numeric string can have one pair of parentheses enclosing the number.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Input_NumberStyleFlags_AllowThousands">AllowThousands</td>
        <td><p>Indicates that the numeric string can have group separators.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Input_NumberStyleFlags_AllowTrailingSign">AllowTrailingSign</td>
        <td><p>Indicates that the numeric string can have a trailing sign.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Input_NumberStyleFlags_AllowTrailingWhite">AllowTrailingWhite</td>
        <td><p>Indicates that trailing white-space character must be ignored during parsing.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Input_NumberStyleFlags_Any">Any</td>
        <td><p>Indicates that all the AllowXXX bit styles are used.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Input_NumberStyleFlags_Currency">Currency</td>
        <td><p>Indicates all styles except AllowExponent and AllowHexSpecifier.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Input_NumberStyleFlags_Float">Float</td>
        <td><p>Indicates that the AllowLeadingWhite, AllowTrailingWhite, AllowLeadingSign,
AllowDecimalPoint, and AllowExponent styles are used.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Input_NumberStyleFlags_HexNumber">HexNumber</td>
        <td><p>Indicates that the AllowLeadingWhite, AllowTrailingWhite, and AllowHexSpecifier styles are used.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Input_NumberStyleFlags_Integer">Integer</td>
        <td><p>Indicates that the AllowLeadingWhite, AllowTrailingWhite, and AllowLeadingSign styles are used.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Input_NumberStyleFlags_None">None</td>
        <td><p>Indicates that none of the bit styles are allowed.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_C1Input_NumberStyleFlags_Number">Number</td>
        <td><p>Indicates that the AllowLeadingWhite, AllowTrailingWhite, AllowLeadingSign,
AllowTrailingSign, AllowDecimalPoint, and AllowThousands styles are used.</p>
</td>
      </tr>
    </tbody>
  </table>
</div>
