Methods
- Summary of methods:
 - 
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.  
 
 
 Get the value
of the boolean property with the specified name. 
 
 
 
 
 
 Get the value
of the byte property identified by name. 
 
 
 
 
 
 Get the value
of the byte array property identified by name. 
 
 
 
 
 
 Get the value
of the 2-byte character property identified by name. 
 
 
 
 
 
 Get the value
of the double precision floating point property identified by name. 
 
 
 
 
 
 Get the value
of the floating point property identified by name. 
 
 
 
 
 
 Get the value of
the integer property identified by name. 
 
 
 
 
 
 Get the value
of the long integer property identified by name. 
 
 
 
 
 
 Get the value and
data type of the property identified by name. 
 
 
 
 
 
 Get the value
of the short integer property identified by name. 
 
 
 
 
 
 Get the value
of the string property identified by name. 
 
 
 
 
 
 Set the value
of the boolean property identified by name. 
 
 
 
 
 
 Set the value
of the byte property identified by name. 
 
 
 
 
 
 Set the value
of the byte array property identified by name. 
 
 
 
 
 
 Set the value
of the 2-byte character property identified by name. 
 
 
 
 
 
 Set the value
of the double precision floating point property identified by name. 
 
 
 
 
 
 Set the value
of the floating point property identified by name. 
 
 
 
 
 
 Set the value of
the integer property identified by name. 
 
 
 
 
 
 Set the value
of the long integer property identified by name. 
 
 
 
 
 
 Set the value and
data type of a property identified by name. 
 
 
 
 
 
 Set the value
of the short integer property identified by name. 
 
 
 
 
 
 Set the value
of the string property identified by name. 
 
 
 
GetBooleanProperty - Get Boolean Property
 
Boolean GetBooleanProperty(String property_name);
GetByteProperty - Get Byte Property
 
Byte    GetByteProperty(String property_name) ;
Int16   GetSignedByteProperty(String property_name) ;
GetBytesProperty - Get Byte Array Property
 
Byte[]  GetBytesProperty(String property_name) ;
GetCharProperty - Get Character Property
 
Char    GetCharProperty(String property_name) ;
GetDoubleProperty - Get Double Precision Floating Point Property
 
Double  GetDoubleProperty(String property_name) ;
GetFloatProperty - Get Floating Point Property
 
Single  GetFloatProperty(String property_name) ;
GetIntProperty - GetIntProperty
 
Int32   GetIntProperty(String property_name) ;
GetLongProperty - Get Long Integer Property
 
Int64   GetLongProperty(String property_name) ;
GetObjectProperty - Get Object Property
 
Object  GetObjectProperty( String property_name) ;
GetShortProperty - Get Short Integer Property
 
Int16   GetShortProperty(String property_name) ;
GetStringProperty - GetStringProperty
 
String  GetStringProperty(String property_name) ;
SetBooleanProperty - Set Boolean Property
 
void SetBooleanProperty( String property_name,  Boolean value) ;
SetByteProperty - Set Byte Property
 
void SetByteProperty( String property_name,  Byte value) ;
      void SetSignedByteProperty( String property_name,  Int16 value) ;
SetBytesProperty - Set Byte Array Property
 
void SetBytesProperty( String property_name, Byte[] value ) ;
SetCharProperty - Set Character Property
 
void SetCharProperty( String property_name,  Char value) ;
SetDoubleProperty - Set Double Precision Floating Point Property
 
void SetDoubleProperty( String property_name,  Double value) ;
SetFloatProperty - Set Floating Point Property
 
void SetFloatProperty( String property_name,  Single value) ;
SetIntProperty - Set Integer Property
 
void SetIntProperty( String property_name,  Int32 value) ;
SetLongProperty - Set Long Integer Property
 
void SetLongProperty( String property_name,  Int64 value) ;
SetObjectProperty - Set Object Property
 
void SetObjectProperty( String property_name,  Object value) ;
SetShortProperty - Set Short Integer Property
 
void SetShortProperty( String property_name,  Int16 value) ;
SetStringProperty - Set String Property
 
void SetStringProperty( String property_name,  String value);