PropertyHandle :: SetValue - Set Value
The function can be called in order to change the value a property handle. The function works similar as the =-operator (assignment operator).
Reference to the property handle that contains the result of an operation (usually the calling property handle).
Implementation overview
- - internal feature (not documented)
PropertyHandle :: SetValue ( cnbuffer, check_update=YES ) - - internal feature (not documented)
PropertyHandle :: SetValue ( int64_val, check_update=YES ) - - internal feature (not documented)
PropertyHandle :: SetValue ( logval, check_update=YES ) - - internal feature (not documented)
PropertyHandle :: SetValue ( cstring, check_update=YES, conv_opt=NO ) - - internal feature (not documented)
PropertyHandle :: SetValue ( cnstring, check_update=YES, conv_opt=NO ) - - internal feature (not documented)
PropertyHandle :: SetValue ( cprop_hdl, check_update=YES ) - - internal feature (not documented)
PropertyHandle :: SetValue ( utfstr_c, check_update=YES, conv_opt=NO ) - - internal feature (not documented)
PropertyHandle :: SetValue ( date_val, check_update=YES ) - - internal feature (not documented)
PropertyHandle :: SetValue ( dbl_value, check_update=YES ) - - internal feature (not documented)
PropertyHandle :: SetValue ( float_val, check_update=YES ) - - internal feature (not documented)
PropertyHandle :: SetValue ( long_val, check_update=YES ) - - internal feature (not documented)
PropertyHandle :: SetValue ( short_val, check_update=YES ) - - internal feature (not documented)
PropertyHandle :: SetValue ( int8_val, check_update=YES ) - - internal feature (not documented)
PropertyHandle :: SetValue ( time_val, check_update=YES ) - - internal feature (not documented)
PropertyHandle :: SetValue ( datetime_val, check_update=YES ) - - internal feature (not documented)
PropertyHandle :: SetValue ( uint64_val, check_update=YES ) - - internal feature (not documented)
PropertyHandle :: SetValue ( ulong_val, check_update=YES ) - - internal feature (not documented)
PropertyHandle :: SetValue ( ushort_val, check_update=YES )
Implementation details
-
- internal feature (not documented)
PropertyHandle & PropertyHandle  :: SetValue ( BBuffer &cnbuffer, logical check_update=YES )
- cnbuffer - - internal feature (not documented)
- check_update
- Check update
When this option is set to true, the function checks, whether the property can be updated or not. Otherwise, the value is set without checking.
Default: YES
to list
-
- internal feature (not documented)
PropertyHandle & PropertyHandle  :: SetValue ( int64 int64_val, logical check_update=YES )
- int64_val - 64 bit integer value
- check_update
- Check update
When this option is set to true, the function checks, whether the property can be updated or not. Otherwise, the value is set without checking.
Default: YES
to list
-
- internal feature (not documented)
PropertyHandle & PropertyHandle  :: SetValue ( logical logval, logical check_update=YES )
- logval
- Logical value
Is a logical (bool) value.
- check_update
- Check update
When this option is set to true, the function checks, whether the property can be updated or not. Otherwise, the value is set without checking.
Default: YES
to list
- logval
- Logical value
-
- internal feature (not documented)
PropertyHandle & PropertyHandle  :: SetValue ( char *cstring, logical check_update=YES, logical conv_opt=NO )
- cstring
- C string
Usually, the string has to be 0-terminated, but there might be exceptions.
- check_update
- Check update
When this option is set to true, the function checks, whether the property can be updated or not. Otherwise, the value is set without checking.
Default: YES
- conv_opt
- Data conversion required
Default: NO
to list
- cstring
- C string
-
- internal feature (not documented)
PropertyHandle & PropertyHandle  :: SetValue ( NString &cnstring, logical check_update=YES, logical conv_opt=NO )
- cnstring - String containing the text
- check_update
- Check update
When this option is set to true, the function checks, whether the property can be updated or not. Otherwise, the value is set without checking.
Default: YES
- conv_opt
- Data conversion required
Default: NO
to list
-
- internal feature (not documented)
PropertyHandle & PropertyHandle  :: SetValue ( PropertyHandle &cprop_hdl, logical check_update=YES )
- cprop_hdl - Property Handle
- check_update
- Check update
When this option is set to true, the function checks, whether the property can be updated or not. Otherwise, the value is set without checking.
Default: YES
to list
-
- internal feature (not documented)
PropertyHandle & PropertyHandle  :: SetValue ( utf16char *utfstr_c, logical check_update=YES, logical conv_opt=NO )
- utfstr_c - - Title unknown
- check_update
- Check update
When this option is set to true, the function checks, whether the property can be updated or not. Otherwise, the value is set without checking.
Default: YES
- conv_opt
- Data conversion required
Default: NO
to list
-
- internal feature (not documented)
PropertyHandle & PropertyHandle  :: SetValue ( dbdt date_val, logical check_update=YES )
- date_val
- Date value
The data value is passed in the internal data format.
- check_update
- Check update
When this option is set to true, the function checks, whether the property can be updated or not. Otherwise, the value is set without checking.
Default: YES
to list
- date_val
- Date value
-
- internal feature (not documented)
PropertyHandle & PropertyHandle  :: SetValue ( double dbl_value, logical check_update=YES )
- dbl_value
- Double value
A double value is a 64 bit floating number.
- check_update
- Check update
When this option is set to true, the function checks, whether the property can be updated or not. Otherwise, the value is set without checking.
Default: YES
to list
- dbl_value
- Double value
-
- internal feature (not documented)
PropertyHandle & PropertyHandle  :: SetValue ( float float_val, logical check_update=YES )
- float_val
- Float value
Float values are 32 bit floating numbers.
- check_update
- Check update
When this option is set to true, the function checks, whether the property can be updated or not. Otherwise, the value is set without checking.
Default: YES
to list
- float_val
- Float value
-
- internal feature (not documented)
PropertyHandle & PropertyHandle  :: SetValue ( int32 long_val, logical check_update=YES )
- long_val
- Integer value
The value is passed as platform independent 32-bit integer value.
- check_update
- Check update
When this option is set to true, the function checks, whether the property can be updated or not. Otherwise, the value is set without checking.
Default: YES
to list
- long_val
- Integer value
-
- internal feature (not documented)
PropertyHandle & PropertyHandle  :: SetValue ( int16 short_val, logical check_update=YES )
- short_val - short_val - Title unknown
- check_update
- Check update
When this option is set to true, the function checks, whether the property can be updated or not. Otherwise, the value is set without checking.
Default: YES
to list
-
- internal feature (not documented)
PropertyHandle & PropertyHandle  :: SetValue ( int8 int8_val, logical check_update=YES )
- int8_val - - internal feature (not documented)
- check_update
- Check update
When this option is set to true, the function checks, whether the property can be updated or not. Otherwise, the value is set without checking.
Default: YES
to list
-
- internal feature (not documented)
PropertyHandle & PropertyHandle  :: SetValue ( dbtm time_val, logical check_update=YES )
- time_val
- Time value
The time value is passed in the internal data format.
- check_update
- Check update
When this option is set to true, the function checks, whether the property can be updated or not. Otherwise, the value is set without checking.
Default: YES
to list
- time_val
- Time value
-
- internal feature (not documented)
PropertyHandle & PropertyHandle  :: SetValue ( dttm datetime_val, logical check_update=YES )
- datetime_val - Date time value
- check_update
- Check update
When this option is set to true, the function checks, whether the property can be updated or not. Otherwise, the value is set without checking.
Default: YES
to list
-
- internal feature (not documented)
PropertyHandle & PropertyHandle  :: SetValue ( uint64 uint64_val, logical check_update=YES )
- uint64_val - - internal feature (not documented)
- check_update
- Check update
When this option is set to true, the function checks, whether the property can be updated or not. Otherwise, the value is set without checking.
Default: YES
to list
-
- internal feature (not documented)
PropertyHandle & PropertyHandle  :: SetValue ( uint32 ulong_val, logical check_update=YES )
- ulong_val - ulong_val - Title unknown
- check_update
- Check update
When this option is set to true, the function checks, whether the property can be updated or not. Otherwise, the value is set without checking.
Default: YES
to list
-
- internal feature (not documented)
PropertyHandle & PropertyHandle  :: SetValue ( uint16 ushort_val, logical check_update=YES )
- ushort_val - ushort_val - Title unknown
- check_update
- Check update
When this option is set to true, the function checks, whether the property can be updated or not. Otherwise, the value is set without checking.
Default: YES
to list