Hide

SftTree/DLL 7.5 - Tree Control

Display
Print

RowColFooterPictureStyle

Defines the position of the picture displayed in the row/column footer.

C

DWORD WINAPI SftTree_GetRowColFooterPictureStyle(HWND hwndCtl);
void WINAPI SftTree_SetRowColFooterPictureStyle(HWND hwndCtl, DWORD style);
DWORD WINAPI SftTreeSplit_GetRowColFooterPictureStyle(HWND hwndCtl);
void WINAPI SftTreeSplit_SetRowColFooterPictureStyle(HWND hwndCtl, DWORD style);

C++

DWORD CSftTree::GetRowColFooterPictureStyle() const;
void CSftTree::SetRowColFooterPictureStyle(DWORD style);
DWORD CSftTreeSplit::GetRowColFooterPictureStyle() const;
void CSftTreeSplit::SetRowColFooterPictureStyle(DWORD style);

Parameters

hwndCtl

The window handle of the tree control.

style

The picture location relative to the row/column footer text.

One value of each of the following tables can be combined and passed as style parameter.

styleHorizontal row/column footer picture alignment
SFTTREE_BMP_LEFTThe row/column footer picture is displayed to the left of the footer text. If no horizontal row/column footer picture alignment value is specified, SFTTREE_BMP_LEFT is assumed.
SFTTREE_BMP_CENTERThe row/column footer picture is displayed in the center of the row/column footer, the row/column footer text is not shown.
SFTTREE_BMP_RIGHTThe row/column footer picture is displayed to the right of the row/column footer text.
styleVertical row/column footer picture alignment
SFTTREE_BMP_VCENTERThe row/column footer picture is vertically centered within the row/column footer. If no vertical row/column footer alignment value is specified, SFTTREE_BMP_VCENTER is assumed.
SFTTREE_BMP_TOPThe row/column footer picture is vertically aligned with the top of the row/column footer.
SFTTREE_BMP_BOTTOMThe row/column footer picture is vertically aligned with the bottom of the row/column footer.

Returns

GetRowColFooterPictureStyle returns a value indicating the position of the picture displayed in the row/column footer.

Comments

The GetRowColFooterPictureStyle and SetRowColFooterPictureStyle functions define the position of the picture displayed in the row/column footer.

The row/column footer area is only shown if row headers and column footers are both shown (see SetShowRowHeader and SetShowFooter).

See Also C/C++ API | Categories | Notifications