Search
Table.GetTextStyle Method
See Also
 



Gets the text alignment style of the specified cell.

 Syntax

VB6  Copy Code

Public Function GetTextStyle( _
    ByVal col As Long, _
    ByVal row As Long _
) As ETextStyle

C++  Copy Code

public:
ETextStyle GetTextStyle (
    int col,
    int row
)

 Parameters

col
The column of the table cell which text style is to be returned.
row
The row of the table cell which text style is to be returned.

 Return Value

The text style of a table cell.

 Remarks

Returns the text style of the cell at the table - position specified by col and row arguments.

 See Also