|
|
|
|
|
CheckmarkVisible (Property) In french: CocheVisible
The CheckmarkVisible property is used to: - Determine whether a checkmark is displayed to the left of a row in a TreeView control.
- Show or hide a checkmark to the left of a row in a TreeView control.
TREE_TreeView1["Row1"].CheckmarkVisible = True
Syntax
Determining whether the checkmark is displayed Hide the details
<Result> = <Row of TreeView control>.CheckmarkVisible
<Result>: Boolean - True if the checkmark is visible,
- False otherwise.
<Row of TreeView control>: Character string Row of the TreeView control identified using one of the following syntaxes: - <TreeView control> [ <Element index>]
- <TreeView control> [ <Element path>]
Showing or hiding the checkmark Hide the details
<Row of TreeView control>.CheckmarkVisible = <Visible>
<Row of TreeView control>: Character string Row of the TreeView control identified using one of the following syntaxes: - <TreeView control> [ <Element index>]
- <TreeView control> [ <Element path>]
<Visible>: Boolean - True if the checkmark must be visible,
- False otherwise.
Remarks - The TreeView control must be non-editable and support checkmarks. Otherwise, the checkmark will not be displayed.
- The CheckmarkVisible property returns False if the TreeView control is non-editable and doesn't support checkmarks.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|