Ejemplo n.º 1
0
 /// <summary>
 /// Clears the content of the text box (sets the value to 0 in the current culture and user preference format)
 /// </summary>
 public void ClearBox()
 {
     FTxtNumeric.ClearBox();
 }
Ejemplo n.º 2
0
 /// <summary>
 /// This method overrides the normal user formatting.  It is used by UserPreferences to show examples of formatting options
 /// </summary>
 public void OverrideNormalFormatting(bool AUseNumberFormatForCurrency, bool AShowThousands)
 {
     FTxtNumeric.OverrideNormalFormatting(AUseNumberFormatForCurrency, AShowThousands);
 }
Ejemplo n.º 3
0
 /// <summary>
 /// Selects all text in the TextBox.
 /// </summary>
 public void SelectAll()
 {
     FTxtNumeric.SelectAll();
 }