RadInput for ASP.NET

Most Important Properties Send comments on this topic.
See Also
RadInput Overview > Most Important Properties

Glossary Item Box

RadDateInput Properties 

 Property

 Description

 DateFormat

Gets or sets the date format to which the date picker will render in edit mode

 DisplayDateFormat

Gets or sets the date format to which the date picker will render in display mode

 Culture

Gets or sets the culture info the date picker uses.
This determines the names of the dates and the months, if long format is used

 SelectedDate

Gets or sets the value of RadDateInput

 ShowButton

Boolean property which determines whether the spin buttons will be displayed beside the input

 ButtonsPosition

Property that designates whether the buttons will be rendered at the left or right side of the input

 EmptyMessage

Gets or sets the message which will appear when the input is left empty

 SelectionOnFocus

Determines the cursor position or whether the text must be selected when the input control gets focused. Possible values are: CaretToBeginning, CaretToEnd, None and SelectAll.

RadNumericTextBox Properties 

 Property

 Description

 Type

Property that specifies the number format to which the numeric textbox will render (Number, Percent or Currency).

 Culture

Gets or sets the culture the numeric textbox uses.

 ShowSpinButtons

Boolean property which determines whether the spin buttons will be displayed beside the input

 ShowButton

Boolean property which determines whether the spin buttons will be displayed beside the input

 ButtonsPosition

Property that designates whether the buttons will be rendered at the left or right side of the input

 EmptyMessage

Gets or sets the message which will appear when the input is left empty

 SelectionOnFocus

Determines the cursor position or whether the text must be selected when the input control gets focused. Possible values are: CaretToBeginning, CaretToEnd, None and SelectAll.
 

RadTextBox Properties 

 Property

 Description

 Text

Gets or sets the text string displayed in the input

 TextMode

Gets or sets the text mode of the input controls: SingleLine (default), MultiLine and Password.

 Columns

Gets or sets the width of the textbox (in characters)

 Rows

Gets or sets the number of rows when RadTextBox is in multiline mode

 Wrap

Boolean property that specifies whether the text will be wrapped

 MaxLength

Gets or sets the maximum number of characters the textbox will accept

 EmptyMessage

Gets or sets the message which will appear when the textbox is left empty

 ReadOnly

Boolean property specifying whether the input is in read-only mode or not

 SelectionOnFocus

Determines the cursor position or whether the text must be selected when the input control gets focused. Possible values are: CaretToBeginning, CaretToEnd, None and SelectAll.


RadMaskedTextBox Properties

 Property

 Description

 Mask

Gets or sets the accepted format of the RadMaskedTextBox.

 MaskParts

Allows the user to build the mask programmatically by adding mask part objects.

 HideOnBlur 

Determines whether RadMaskedTextBox will hide its prompt when losing focus, if its value is not set.

 Text

Gets or sets the text of RadMaskedTextBox.
 TextWithLiterals

Used to retrieve the text of RadMaskedTextBox including any literals specified in the mask.

 TextWithPrompt

Used to retrieve the text of RadMaskedTextBox including any prompt characters. The property is read only.

 TextWithPromptAndLiterals

Used to retrieve the text of RadMaskedTextBox including any literals and prompt characters. The property is read only.

 TextMode

Gets or sets the text mode of the input controls: SingleLine (default) and MultiLine.

 SelectionOnFocus

Determines the cursor position or whether the text must be selected when the input control gets focused. Possible values are: CaretToBeginning, CaretToEnd, None and SelectAll. In case of complex mask like having brackets part, CaretToBeginning will set the cursor to mask content starting index. One can use ResetCaretOnFocus to set the cursor position at the very beginning.

 ResetCaretOnFocus

When set to true the cursor position will be set to the very beginning, no matter the mask. This property is ignored in case SelectionOnFocus is set.

See Also