IXlsIconSetCondition
COM interface ( getting help with interfaces )

 

interface IXlsIconSetCondition : IDispatch
{
  [id(1)]         HRESULT Add([out, retval]IXlsIconSetSubCondition** cssc);
  [id(2),propget] HRESULT IconSet([out, retval] enumIconSet* ics);
  [id(2),propput] HRESULT IconSet([in]enumIconSet ics);
  [id(3),propget] HRESULT ShowIconsOnly([out, retval]BOOL* showiconsonly);
  [id(3),propput] HRESULT ShowIconsOnly([in]BOOL showiconsonly);
  [id(4),propget] HRESULT ReverseIcons([out, retval]BOOL* reverse);
  [id(4),propput] HRESULT ReverseIcons([in]BOOL reverse);
}

 

HRESULT Add([out, retval]IXlsIconSetSubCondition** cssc);
creates a step condition for the icon set.

HRESULT IconSet([out, retval] enumIconSet* ics);
retrieves the icon set.

HRESULT IconSet([in]enumIconSet ics);
sets the icon set. Default is : 3 traffic lights.

HRESULT ShowIconsOnly([out, retval]BOOL* showiconsonly);
retrieves whether only icons are shown (values are hidden). Default value is NO.

HRESULT ShowIconsOnly([in]BOOL showiconsonly);
sets whether only icons are shown (values are hidden). Default value is NO.

HRESULT ReverseIcons([out, retval]BOOL* reverse);
retrieves whether icons are reversed. Default value is NO.

HRESULT ReverseIcons([in]BOOL reverse);
sets whether icons are reversed. Default value is NO.