Class ValueTypePropertyValue<T>
Base class of all nullable value type property values.
Inheritance
System.Object
ValueTypePropertyValue<T>
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: OSGeo.MapGuide.MaestroAPI.Feature
Assembly: OSGeo.MapGuide.MaestroAPI.dll
Syntax
public abstract class ValueTypePropertyValue<T> : PropertyValue where T : struct
Type Parameters
Name | Description |
---|---|
T |
Constructors
| Improve this Doc View SourceValueTypePropertyValue()
Initializes a new instance of the ValueTypePropertyValue<T> class.
Declaration
protected ValueTypePropertyValue()
ValueTypePropertyValue(T)
Initializes a new instance of the ValueTypePropertyValue<T> class.
Declaration
protected ValueTypePropertyValue(T value)
Parameters
Type | Name | Description |
---|---|---|
T | value | The value. |
Properties
| Improve this Doc View SourceIsNull
Gets or sets a value indicating whether this instance is null.
Declaration
public override bool IsNull { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
Overrides
| Improve this Doc View SourcePropertyDefType
Gets the suggsted property definition type for this value
Declaration
public override PropertyDefinitionType PropertyDefType { get; }
Property Value
Type | Description |
---|---|
PropertyDefinitionType | The suggsted property definition type. |
Overrides
| Improve this Doc View SourceValue
Gets or sets the value.
Declaration
public T Value { get; set; }
Property Value
Type | Description |
---|---|
T | The value. |
Methods
| Improve this Doc View SourceSetNull()
Sets the value to null.
Declaration
public override void SetNull()