:: com :: sun :: star :: frame :: status ::

constants group ItemState

Constants
UNKNOWN specifies an unknown state.  
DISABLED specifies that the property is currently disabled.  
READ_ONLY specifies that the property is currently read-only.  
DONT_CARE specifies that the property is currently in a don't care state.  
DEFAULT_VALUE specifies that the property is currently in a default state.  
SET specifies that the property is currently in a set state.  
Constants' Details
UNKNOWN
const short UNKNOWN = 0;
Description
specifies an unknown state.
DISABLED
const short DISABLED = 1;
Description
specifies that the property is currently disabled.
READ_ONLY
const short READ_ONLY = 2;
Description
specifies that the property is currently read-only.
DONT_CARE
const short DONT_CARE = 16;
Description
specifies that the property is currently in a don't care state.

This is normally used if a selection provides more than one state for a property at the same time.

DEFAULT_VALUE
const short DEFAULT_VALUE = 32;
Description
specifies that the property is currently in a default state.
SET
const short SET = 64;
Description
specifies that the property is currently in a set state.
Top of Page