Hide

SftTree/DLL 7.5 - Tree Control

Display
Print

FooterLength

Returns the length of a column's footer text.

C

int WINAPI SftTree_GetFooterLength(HWND hwndCtl);
int SftTree_GetFooterColLength(HWND hwndCtl, int realCol);
int WINAPI SftTreeSplit_GetFooterLength(HWND hwndCtl);
int SftTreeSplit_GetFooterColLength(HWND hwndCtl, int realCol);

C++

int CSftTree::GetFooterLen() const;
int CSftTreeSplit::GetFooterLen(int realCol) const;

Parameters

hwndCtl

The window handle of the tree control.

realCol

The zero-based column number whose text length is to be retrieved.

Returns

GetFooterLen returns the length of the specified column's footer text in characters, not including the terminating '\0' or -1 if an error occurred.

Comments

The GetFooterLength function returns the length of a column's footer text.

The footer text length retrieved is based on the column specified using realCol or last defined using SetAccessColumn. Functions, which do not allow the realCol parameter, access the column last defined by SetAccessColumn or the last column referenced by a column specific function. The last column accessed can be retrieved using GetAccessColumn.

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