Hide

SftTree/DLL 7.5 - Tree Control

Display
Print

ToolTipsUseEntireCell

Defines whether ToolTips use the entire cell.

C

BOOL WINAPI SftTree_GetToolTipsUseEntireCell(HWND hwndCtl);
void WINAPI SftTree_SetToolTipsUseEntireCell(HWND hwndCtl, BOOL fSet);
BOOL WINAPI SftTreeSplit_GetToolTipsUseEntireCell(HWND hwndCtl);
void WINAPI SftTreeSplit_SetToolTipsUseEntireCell(HWND hwndCtl, BOOL fSet);

C++

BOOL CSftTree::GetToolTipsUseEntireCell() const;
void CSftTree::SetToolTipsUseEntireCell(BOOL fSet = TRUE);
BOOL CSftTreeSplit::GetToolTipsUseEntireCell() const;
void CSftTreeSplit::SetToolTipsUseEntireCell(BOOL fSet = TRUE);

Parameters

hwndCtl

The window handle of the tree control.

fSet

Set to TRUE so ToolTips use the entire cell height and width, otherwise set to FALSE.

Returns

GetToolTipsUseEntireCell returns a value indicating whether ToolTips use the entire cell. TRUE is returned if ToolTips use the entire cell height and width, otherwise FALSE is returned.

Comments

The GetToolTipsUseEntireCell and SetToolTipsUseEntireCell functions define whether ToolTips use the entire cell.

ToolTips are normally optimized in size to use a minimal amount of space vertically or horizontally to display the cell contents. By setting SetToolTipsUseEntireCell to TRUE, a cell ToolTip will always use the entire cell height and width.

SetToolTipsUseEntireCell has no effect if grid lines are not shown (see SetShowGrid).

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