 |
| IXlsChartAlignment |
 |
COM interface ( getting help with interfaces )
interface IXlsChartAlignment : IDispatch
{
[id(1),propget] HRESULT Horizontal([out, retval] enumHorizontalAlignment* align);
[id(1),propput] HRESULT Horizontal([in]enumHorizontalAlignment align);
[id(2),propget] HRESULT Vertical([out, retval] enumVerticalAlignment* align);
[id(2),propput] HRESULT Vertical([in]enumVerticalAlignment align);
[id(4),propget] HRESULT Orientation([out, retval] int* nAngle);
[id(4),propput] HRESULT Orientation([in]int nAngle);
[id(5),propget] HRESULT ReadingOrder([out, retval] enumTextReadingOrder* readingOrder);
[id(5),propput] HRESULT ReadingOrder([in]enumTextReadingOrder readingOrder);
}
HRESULT Horizontal([out, retval] enumHorizontalAlignment* align);
retrieves the horizontal alignment of the cell or merged cells.
HRESULT Horizontal([in]enumHorizontalAlignment align);
sets the horizontal alignment of the cell or merged cells.
HRESULT Vertical([out, retval] enumVerticalAlignment* align);
retrieves the vertical alignment of the cell or merged cells.
HRESULT Vertical([in]enumVerticalAlignment align);
sets the vertical alignment of the cell or merged cells.
HRESULT Orientation([out, retval] int* nAngle);
retrieves the text orientation angle for the cell or merged cells. 180 means vertical.
HRESULT Orientation([in]int nAngle);
sets the text orientation angle for the cell or merged cells. Use 180 to display the text vertically.
HRESULT ReadingOrder([out, retval] enumTextReadingOrder* readingOrder);
retrieves the text reading order. Default value : context.
HRESULT ReadingOrder([in]enumTextReadingOrder readingOrder);
sets the text reading order. Default value : context.