Infragistics(R) NetAdvantage(R) : Silverlight 2011.2
PadChar Property
See Also  E-mail your feedback on this topic.
Infragistics.Controls.Editors Namespace > XamMaskedInput Class : PadChar Property

Returns or sets the character that will be used as the pad character. Default is space character (' ').

Syntax

Visual Basic (Declaration) 
Public Property PadChar As Char
C# 
public char PadChar {get; set;}

Remarks

The pad character is the character that is used to replace the prompt characters when getting the data from the XamMaskedInput control with DataMode of IncludeLiteralsWithPadding.

For example, if the data in the editor is as follows:
111-2_-____
and DataMode is set to IncludeLiteralsWithPadding then the returned value will be "111-2 - ". Prompt characters will be replaced by the pad character.

See Also