|
||
SSVarTypes |
|
|||
Structure |
The SSVarTypes enumeration is used with the SilverSharp version of the get_ss_variable_value SilverScreen API routine.
|
|
||
Members |
See the SilverScreen API routine get_ss_variable_value for an explanation of the SSVarTypes symbolic names. |
|
||
See Also |
|
|||
Remarks |
The SSVarTypes enumeration is provided to ease the porting of SilverC, SilverPlus, or SilverEngine code. New SilverSharp code can use the State class to access these properties.
For instance, this:
State.char_height
is equivalent to this:
SC.get_ss_variable_value(SSVarTypes.SSVV_char_height);
|
|
||
Example |
The following code retrieves the current screen pixel width:
|
|