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 ExpandedImage property is used to:
  • find out and modify the default image associated with an expanded row in a TreeView Table control.
  • find out and modify the image associated with a specific expanded row in a TreeView Table control.
  • Reports and Queries find out and modify the image associated with an expanded row in a treeview item of a "TreeView table" report.
This property is used to define:
Example
// Defines the image used for an expanded row
TVT_Recipe.ExpandedImage = "C:\MyImages\Image.BMP"
// Changes the expanded image of row 4
TVT_Recipe[4].ExpandedImage = "C:\MyImages\Image.BMP"
Reports and Queries
// Change the expanded image in the report
// --BeforePrinting ITEM_TreeView
IF MySelf.HierarchicalDepth = 1 THEN MySelf.ExpandedImage = "C:\Images\tool.png"
Syntax

Finding out the default image associated with an expanded row or the image associated with a specific row Hide the details

<Result> = <Control used>.ExpandedImage
<Result>: Character string
  • Name and full path of the default image associated with the expanded rows of the control.
  • Empty string ("") if the image used by default was not modified.
<Control used>: Control name
Name of the control to be used:
  • TreeView Table control.
To find out the expanded image associated with a specific row in a TreeView Table control, use the following notation:
<TreeView Table control>[<Row number>]

Modifying the default image associated with an expanded row the image associated with a specific row Hide the details

<Control used>.ExpandedImage = <New image>
<Control used>: Control name
Name of the control to be used:
  • TreeView Table control.
To modify the expanded image associated with a specific row in a TreeView Table control, use the following notation:
<TreeView Table control>[<Row number>]
<New image>: Character string
Name and full path of the new image associated by default with the expanded rows in a TreeView Table control.
Reports and Queries

Finding out the image of an expanded treeview item in a "TreeView Table" report Hide the details

<Result> = <TreeView item>.ExpandedImage
<Result>: Character string
  • Name and full path of the image associated with an expanded row in the treeview item.
  • Empty string ("") if no image is used.
<TreeView item>: Character string
Name of the TreeView item to use.
Reports and Queries

Modifying the image of an expanded treeview item in a "TreeView Table" report Hide the details

<TreeView item>.ExpandedImage = <New image>
<TreeView item>: Character string
Name of the TreeView item to be used.
<New image>: Character string
Name and full path of the new image associated with an expanded row in the treeview item.
Minimum version required
  • Version 11
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help