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 CollapsedImage property is used to:
  • find out and/or modify the default image associated with a collapsed row in a TreeView Table control.
  • WINDEV find out and/or modify the default image associated with a collapsed row in a TreeView control.
  • find out and/or modify the image associated with a specific collapsed row in a TreeView Table control.
  • WINDEVWEBDEV - Server codeReports and QueriesUniversal Windows 10 AppiPhone/iPad find out and modify the image in a collapsed row of a TreeView item in a "TreeView table" type report.
This property is used to define:
  • the image that will be used by default during the next additions in the TreeView Table control. This image will be taken into account by TableAdd, TableAddLine, TableAddChild, TableInsert, TableInsertLine, TableInsertChild, etc.
  • the collapsed image for one of the rows found in the TreeView Table control.
  • WINDEV the image that will be used by default during the next additions in the TreeView control. This image will be taken into account by TreeAdd and TreeInsert.
  • WINDEVWEBDEV - Server codeReports and QueriesUniversal Windows 10 AppiPhone/iPad the collapsed image of the rows in a "TreeView Table" report.
Example
// Define the image used for a collapsed row
TVT_Recipe.CollapsedImage = "C:\MyImages\Image.BMP"
// Change the collapsed image associated with row 4
TVT_Recipe[4].CollapsedImage = "C:\MyImages\Image.BMP"
WINDEVReports and QueriesUniversal Windows 10 AppiPhone/iPad
// Change the collapsed image in the report
// --Before printing ITEM_TreeView
IF MySelf.HierarchicalDepth = 1 THEN MySelf.CollapsedImage = "C:\Images\tool.png"
WEBDEV - Server code
// Change the collapsed image of row 4 from a TreeView table in a WEBDEV site
// from a server code
// The relative path is based on the WEB directory of the site
// (returned by fWebDir)
TVT_Recipe[4].CollapsedImage = ".\Image.png"
Syntax

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

<Result> = <Control used>.CollapsedImage
<Result>: Character string
  • Name and full path of the default image associated with the collapsed rows in 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.
  • WINDEV TreeView control.
To find out the collapsed image associated with a specific row in a TreeView Table control, use the following notation:
<TreeView Table>[<Row number>]

Modifying the default image associated with a collapsed row or the image associated with a specific row Hide the details

<Control used>.CollapsedImage = <New image>
<Control used>: Control name
Name of the control to be used:
  • TreeView Table control.
  • WINDEV TreeView control.
To modify the collapsed image associated with a specific row in a TreeView Table control, use the following notation:
<TreeView Table>[<Row number>]
<New image>: Character string
Name and full path of the new image associated by default with a collapsed row.
WEBDEV - Server code The access path to the images must be relative to the "<ProjectName>_WEB" directory. For example, in this case, the image is found in an "Images" sub-directory of the "_WEB" directory of the site:
MySelf.ExpandedImage = "\Images\Job_16.gif"
MySelf.CollapsedImage = "\Images\Job_16.gif"
WINDEVWEBDEV - Server codeReports and QueriesUniversal Windows 10 AppiPhone/iPad

Finding out the image of a collapsed 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 a collapsed row in the TreeView item.
  • Empty string ("") if no image is used.
<TreeView item>: Character string
Name of the TreeView item to use.
WINDEVWEBDEV - Server codeReports and QueriesUniversal Windows 10 AppiPhone/iPad

Modifying the image of a collapsed 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 a collapsed 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