IXlsChartMarkerStyle
COM interface ( getting help with interfaces )

 

interface IXlsChartMarkerStyle : IDispatch
{

  [id(1),propget] HRESULT Type([out, retval]enumChartMarker* type);
  [id(1),propput] HRESULT Type([in]enumChartMarker type);
  [id(2),propget] HRESULT MarkerStyle([out, retval]enumChartMarkerStyle* style);
  [id(2),propput] HRESULT MarkerStyle([in]enumChartMarkerStyle style);
  [id(3),propget] HRESULT ForegroundColor([out, retval]int* nRGB);
  [id(3),propput] HRESULT ForegroundColor([in]int nRGB);
  [id(4),propget] HRESULT BackgroundColor([out, retval]int* nRGB);
  [id(4),propput] HRESULT BackgroundColor([in]int nRGB);
  [id(5),propget] HRESULT MarkerSize([out, retval]int* size);
  [id(5),propput] HRESULT MarkerSize([in]int size);
  [id(6),propget] HRESULT Shadow([out, retval]BOOL* shadow);
  [id(6),propput] HRESULT Shadow([in]BOOL shadow);
  [id(7),propget] HRESULT NoBackground([out, retval]BOOL* nobackground);
  [id(7),propput] HRESULT NoBackground([in]BOOL nobackground);
  [id(8),propget] HRESULT NoForeground([out, retval]BOOL* noforeground);
  [id(8),propput] HRESULT NoForeground([in]BOOL noforeground);

}

 

HRESULT Type([out, retval]enumChartMarker* type);
returns the marker style type.

HRESULT Type([in]enumChartMarker type);
sets the marker style type.

HRESULT MarkerStyle([out, retval]enumChartMarkerStyle* style);
returns the marker style.

HRESULT MarkerStyle([in]enumChartMarkerStyle style);
sets the marker style.

HRESULT ForegroundColor([out, retval]int* nRGB);
returns the foreground area color. Default is automatic.

HRESULT ForegroundColor([in]int nRGB);
sets the foreground area color. Color is expressed using a typical RGB value. Default is automatic.

HRESULT BackgroundColor([out, retval]int* nRGB);
returns the background area color. Default is automatic.

HRESULT BackgroundColor([in]int nRGB);
sets the background area color. Color is expressed using a typical RGB value. Default is automatic.

HRESULT MarkerSize([out, retval]int* size);
returns the marker size in points. Default is 5.

HRESULT MarkerSize([in]int size);
sets the marker size in points. Default is 5.

HRESULT Shadow([out, retval]BOOL* shadow);
returns whether the marker has a shadow. Default is no.

HRESULT Shadow([in]BOOL shadow);
sets whether the borders have a shadow. Default is no.

HRESULT NoBackground([out, retval]BOOL* nobackground);
returns whether the marker has a background color. Default is : has a background (automatic color).

HRESULT NoBackground([in]BOOL nobackground);
sets whether the marker has a background color. Default is : has a background (automatic color).

HRESULT NoForeground([out, retval]BOOL* noforeground);
returns whether the marker has a foreground color. Default is : has a foreground (automatic color).

HRESULT NoForeground([in]BOOL noforeground);
sets whether the marker has a foreground color. Default is : has a foreground (automatic color).