 |
| IXlsChartLegendEntry |
 |
COM interface ( getting help with interfaces )
interface IXlsChartLegendEntry : IDispatch
{
[id(1),propput] HRESULT Show([in]BOOL show);
[id(1),propget] HRESULT Show([out, retval]BOOL* show);
[id(2),propput] HRESULT EntryIndex([in]int index);
[id(2),propget] HRESULT EntryIndex([out, retval]int* index);
[id(3),propget] HRESULT Font([out, retval]IXlsChartFont** font);
}
HRESULT Show([in]BOOL show);
sets whether the legend is displayed.
HRESULT Show([out, retval]BOOL* show);
returns whether the legend is displayed.
HRESULT EntryIndex([in]int index);
sets the data label index that identifies the legend entry. Only applies to pie, surface/contour charts.
HRESULT EntryIndex([out, retval]int* index);
returns the data label index that identifies the legend entry. Only applies to pie, surface/contour charts.
HRESULT Font([out, retval]IXlsChartFont** font);
returns the font options object.