IPropertyContext is an abstract superclass that contains methods that get and set properties. These methods are inherited by other classes.
Method | Description |
---|---|
GetBooleanProperty | Get the value of the boolean property with the specified name. |
GetByteProperty | Get the value of the byte property identified by name. |
GetBytesProperty | Get the value of the byte array property identified by name. |
GetCharProperty | Get the value of the 2-byte character property identified by name. |
GetDoubleProperty | Get the value of the double precision floating point property identified by name. |
GetFloatProperty | Get the value of the floating point property identified by name. |
GetIntProperty | Get the value of the integer property identified by name. |
GetLongProperty | Get the value of the long integer property identified by name. |
GetObjectProperty | Get the value and data type of the property identified by name. |
GetShortProperty | Get the value of the short integer property identified by name. |
GetStringProperty | Get the value of the string property identified by name. |
SetBooleanProperty | Set the value of the boolean property identified by name. |
SetByteProperty | Set the value of the byte property identified by name. |
SetBytesProperty | Set the value of the byte array property identified by name. |
SetCharProperty | Set the value of the 2-byte character property identified by name. |
SetDoubleProperty | Set the value of the double precision floating point property identified by name. |
SetFloatProperty | Set the value of the floating point property identified by name. |
SetIntProperty | Set the value of the integer property identified by name. |
SetLongProperty | Set the value of the long integer property identified by name. |
SetObjectProperty | Set the value and data type of a property identified by name. |
SetShortProperty | Set the value of the short integer property identified by name. |
SetStringProperty | Set the value of the string property identified by name. |
Boolean GetBooleanProperty(String property_name);
Get the value of the boolean property with the specified name.
Byte GetByteProperty(String property_name) ; Int16 GetSignedByteProperty(String property_name) ;
Get the value of the byte property identified by name.
Byte[] GetBytesProperty(String property_name) ;
Get the value of the byte array property identified by name.
Char GetCharProperty(String property_name) ;
Get the value of the 2-byte character property identified by name.
Double GetDoubleProperty(String property_name) ;
Get the value of the double precision floating point property identified by name.
Single GetFloatProperty(String property_name) ;
Get the value of the floating point property identified by name.
Int32 GetIntProperty(String property_name) ;
Get the value of the integer property identified by name.
Int64 GetLongProperty(String property_name) ;
Get the value of the long integer property identified by name.
Object GetObjectProperty( String property_name) ;
Get the value and data type of the property identified by name.
Int16 GetShortProperty(String property_name) ;
Get the value of the short integer property identified by name.
String GetStringProperty(String property_name) ;
Get the value of the string property identified by name.
void SetBooleanProperty( String property_name, Boolean value) ;
Set the value of the boolean property identified by name.
void SetByteProperty( String property_name, Byte value) ; void SetSignedByteProperty( String property_name, Int16 value) ;
Set the value of the byte property identified by name.
void SetBytesProperty( String property_name, Byte[] value ) ;
Set the value of the byte array property identified by name.
void SetCharProperty( String property_name, Char value) ;
Set the value of the 2-byte character property identified by name.
void SetDoubleProperty( String property_name, Double value) ;
Set the value of the double precision floating point property identified by name.
void SetFloatProperty( String property_name, Single value) ;
Set the value of the floating point property identified by name.
void SetIntProperty( String property_name, Int32 value) ;
Set the value of the integer property identified by name.
void SetLongProperty( String property_name, Int64 value) ;
Set the value of the long integer property identified by name.
void SetObjectProperty( String property_name, Object value) ;
Set the value and data type of a property identified by name.
void SetShortProperty( String property_name, Int16 value) ;
Set the value of the short integer property identified by name.
void SetStringProperty( String property_name, String value);
Set the value of the string property identified by name.