ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage properties / Properties associated with windows, pages and controls
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
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.
Example
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.
Minimum version required
  • Version 16
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 09/11/2023

Send a report | Local help