|
|
|
|
|
BarVisible (Property) In french: BandeauVisible
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.
// 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.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|