Location:
eiklbi.h
Link against:
eikcoctl.lib
TListItemProperties
Supported from 6.0
Colour and style properties which can be applied when drawing the contents of list box items.
Defined in TListItemProperties
:
Color()
, IsBold()
, IsDimmed()
, IsItalics()
, IsUnderlined()
, SetBold()
, SetColor()
, SetDimmed()
, SetItalics()
, SetUnderlined()
, TListItemProperties()
TRgb Color() const;
Gets the list item’s colour.
|
void SetColor(TRgb aColor);
Sets the list item’s colour.
|
TBool IsBold() const;
Tests whether the list item is drawn bold.
|
void SetBold(TBool aBold);
Sets whether the list item is drawn bold or not bold.
|
TBool IsDimmed() const;
Tests list item dim state.
An item is usually drawn dimmed to indicate that it cannot accept user input.
|
void SetDimmed(TBool aDimmed);
Sets list item dim state.
An item is usually drawn dimmed to indicate that it cannot accept user input.
|
TBool IsItalics() const;
Tests whether the list item is italicised.
|
void SetItalics(TBool aItalics);
Sets whether or not the list item is drawn in italics.
|
TBool IsUnderlined() const;
Test whether the list item is drawn with an underline.
|
void SetUnderlined(TBool aUnderlined);
Sets whether or not the list item is drawn with an underline.
|