NumericUpDownExtensions
Wisej.Web.Markup.NumericUpDownExtensions
Last updated
Was this helpful?
Wisej.Web.Markup.NumericUpDownExtensions
Last updated
Was this helpful?
Namespace: Wisej.Web.Markup
Assembly: Wisej.Framework (4.0.0.0)
Adds fluent markup extension methods to the NumericUpDown class.
public class NumericUpDownExtensions
Sets the number of decimal places for the specified NumericUpDown control.
TNumericUpDownControl
The type of the numeric up-down control.
numericUpDownControl
The numeric up-down control to modify.
decimalPlaces
The number of decimal places.
Returns: TNumericUpDownControl. The modified numeric up-down control.
Determines whether the specified NumericUpDown control should display values in hexadecimal.
TNumericUpDownControl
The type of the numeric up-down control.
numericUpDownControl
The numeric up-down control to modify.
isHexadecimal
Indicates whether to display values in hexadecimal.
Returns: TNumericUpDownControl. The modified numeric up-down control.
Sets the increment for the specified NumericUpDown control.
TNumericUpDownControl
The type of the numeric up-down control.
numericUpDownControl
The numeric up-down control to modify.
increment
The increment value.
Returns: TNumericUpDownControl. The modified numeric up-down control.
Sets the maximum value for the specified NumericUpDown control.
TNumericUpDownControl
The type of the numeric up-down control.
numericUpDownControl
The numeric up-down control to modify.
maximum
The maximum value.
Returns: TNumericUpDownControl. The modified numeric up-down control.
Sets the minimum value for the specified NumericUpDown control.
TNumericUpDownControl
The type of the numeric up-down control.
numericUpDownControl
The numeric up-down control to modify.
minimum
The minimum value.
Returns: TNumericUpDownControl. The modified numeric up-down control.
Sets a nullable value for the specified NumericUpDown control.
TNumericUpDownControl
The type of the numeric up-down control.
numericUpDownControl
The numeric up-down control to modify.
nullableValue
The nullable value to set; can be null.
Returns: TNumericUpDownControl. The modified numeric up-down control.
Attaches a value-changed event handler to the specified NumericUpDown control.
TNumericUpDownControl
The type of the numeric up-down control.
numericUpDownControl
The numeric up-down control to modify.
action
The action to perform when the value changes.
Returns: TNumericUpDownControl. The numeric up-down control with the event handler attached.
Sets a prefix for the display value of the specified NumericUpDown control.
TNumericUpDownControl
The type of the numeric up-down control.
numericUpDownControl
The numeric up-down control to modify.
prefix
The prefix to display before the numeric value.
Returns: TNumericUpDownControl. The modified numeric up-down control.
Sets a suffix for the display value of the specified NumericUpDown control.
TNumericUpDownControl
The type of the numeric up-down control.
numericUpDownControl
The numeric up-down control to modify.
postfix
The suffix to display after the numeric value.
Returns: TNumericUpDownControl. The modified numeric up-down control.
Configures whether the specified NumericUpDown control should display a thousands separator.
TNumericUpDownControl
The type of the numeric up-down control.
numericUpDownControl
The numeric up-down control to modify.
thousandsSeparator
Indicates whether to use a thousands separator.
Returns: TNumericUpDownControl. The modified numeric up-down control.
Sets the current value for the specified NumericUpDown control.
TNumericUpDownControl
The type of the numeric up-down control.
numericUpDownControl
The numeric up-down control to modify.
value
The value to set.
Returns: TNumericUpDownControl. The modified numeric up-down control.