Infragistics(R) NetAdvantage(R) : Silverlight 2011.2
FractionPartContinuous Class
Members  See Also  E-mail your feedback on this topic.
Infragistics.Controls.Editors Namespace : FractionPartContinuous Class

Edit section implementation for a fraction part.

Syntax

Visual Basic (Declaration) 
Public NotInheritable Class FractionPartContinuous 
   Inherits FractionPart
C# 
public sealed class FractionPartContinuous : FractionPart 

Remarks

FractionPartContinous represents the fraction part of a numeric mask. This differs from FractionPart in that this section will allow digits entered into the fraction part to flow into the integer part as the fraction part gets filled up. This allows for convenient entering of values without having to enter the '.' character. You specify this kind of fraction section in the mask using "{double:-n.m:c}" mask token where 'n' is the number of digits in integer portion, 'm' the number of digits in the fraction portion and 'c' for continous fraction part. See the associated entry in the table of masks in the Masks topic for more information.

Note: Typically there is no need for you to directly create or use sections. XamMaskedInput will automatically create and manage these objects based on the supplied mask.

See Also