Class FormComponentProperties<TValue>
Defines properties which are common to all form components. Inherit this class to create properties of custom form components.
public abstract class FormComponentProperties<TValue> : FormComponentProperties
Type Parameters
TValue
Value type of the form component this properties are designed for. Determines the DefaultValue type.
- Inheritance
-
objectFormComponentProperties<TValue>
- Derived
- Inherited Members
- Extension Methods
Constructors
FormComponentProperties(string, int, int)
Initializes a new instance of the FormComponentProperties<TValue> class using the data type, size and precision given.
Specifying the size
and precision
is optional and depends on whether the dataType
requires them.
protected FormComponentProperties(string dataType, int size = -1, int precision = -1)
Parameters
dataType
stringDefault data type of values (typically a constant from FieldDataType).
size
intDefault size of values.
precision
intDefault precision of values.
- See Also
Properties
DefaultValue
When overridden in a derived class, gets or sets the default value of the form component and underlying field. Use the DefaultValueEditingComponentAttribute to specify a form component for editing.
public abstract TValue DefaultValue { get; set; }
Property Value
- TValue
Methods
GetDefaultValue()
Gets the default value. The DefaultValue property can be used directly to obtain the typed default value.
public override object GetDefaultValue()
Returns
- object
Returns the default value.
SetDefaultValue(object)
Sets the default value to value
.
The value
must be of type TValue
or an exception is thrown.
The DefaultValue property can be used directly to set the typed default value.
public override void SetDefaultValue(object value)
Parameters
value
objectValue to be set as the default value.