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 BarVisible property is used to manage the selection bar on a column in a Table or TreeView Table control. You can:
  • Find out whether the selection bar is visible or not in the column.
  • Show or hide the selection bar in the column.
Example
// Do not display the selection bar on columns 1 and 5
COL_Column1.BarVisible = False
COL_Column5.BarVisible = False
Syntax

Find out if the selection bar is visible on a column Hide the details

<Visible/Invisible> = <Column used>.BarVisible
<Visible/Invisible>: Boolean
  • True if the selection bar is visible,
  • False otherwise.
<Column used>: Control name
Name of the column (Table or TreeView Table) to use.

Make the selection bar visible or invisible on a column Hide the details

<Column used>.BarVisible = <Visible/Invisible>
<Column used>: Control name
Name of the column (Table or TreeView Table) to use.
<Visible/Invisible>: Boolean
  • True if the selection bar must be visible on the column,
  • False if the selection bar must be invisible on the column.
Remarks
  • The BarVisible property can be used on the columns of Table and TreeView Table controls.
  • The BarVisible property can be used on multi-selection Table controls: the selection bar is visible/invisible on the specified column for all the selected rows.
  • The BarVisible property can be used on selection bars associated with a color or an image.
Minimum version required
  • Version 14
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 06/22/2023

Send a report | Local help