GetFooterCellFont
Retrieve the font of an individual footer row
WTSupported in traditional Synergy on Windows
|
|
|
|
status = %AX_CALL(axlist_id, "GetFooterCellFont", row, face_name, point_size, & rendition)
Return value
status
Returns true if successful, otherwise false. (n)
Arguments
axlist_id
The ID for the ActiveX Toolkit list. This ID can be retrieved with L_STATUS. (n)
row
The row number of the footer whose font is being retrieved. (n)
face_name
The returned name of the Windows font. (a)
point_size
The returned size of the Windows font in points. (n)
rendition
The returned rendition. This is zero if no renditions are applied, or one or more of the following options, which can be combined using .BOR. or the vertical bar (|) operator: D_CELL_BOLD, D_CELL_ITALIC, D_CELL_UNDER (underlined). (n)
Discussion
The GetFooterCellFont method retrieves the font and rendition for a specified row of the footer.
See also
- SetFooterCellFont method
- %AX_CALL routine
Examples
The following example sets the font for the third row of footers to bold. This does not affect other font parameters.
xcall l_status(listid, D_LAXCTRL, axctrl) xcall ax_call(axctrl, "GetFooterCellFont", 3, face, ptsize, style) xcall ax_call(axctrl, "SetFooterCellFont", 3, %atrim(face), ptsize, style .bor. D_CELL_BOLD)