Skip to content

ItemBold - AbstractTreeView

Determines whether an item's text is bold or not

Type: Property
Access: Read/Write
Data Type: Boolean
Parameters: None

Parameters

Parameter Type Description
hItem Handle Item handle

Syntax

Property Boolean ItemBold
Access Type Syntax
Read Access: Get ItemBold to BooleanVariable
Write Access: Set ItemBold to BooleanVariable/Value

Description

Determines whether a TreeView item's text is bold or not.

Sample

This sample shows how to check whether a TreeView item's text is bold or not.

Handle hItem
Boolean bBold
...
/// do something to get an item handle
...
Get ItemBold hItem to bBold

Sample

This sample shows how to set a TreeView item's text to appear bold.

Handle hItem
...
/// do something to get an item handle
...
Set ItemBold hItem to True