|
|
|
|
|
- Value of Static control
- Value of Calculated control in a report
- Value of Bar Code control
- Value of Image control
- Value of Static control or preset control found in a report
- Value of RTF control
- Value of window or page
- Value of edit control
- Value of Button control
- Value of Check Box control or value of option in a Check Box control
- Value of Radio Button control
- Value of List Box, ListView or Table control
- Value of cell in a Table control
- Value of Combo Box control
- Value of TreeView control or TreeView Table control
- Value of a Progress Bar, Slider, Spin or Scrollbar control
- Value of Tab control
- Value of menu or menu option
- Value of Chart control
- Value of OLE control
- Value of Rating control
- Value of Drawer control
- Value of ActiveX control
- Value of HTML control
- Value of Map control
- Value of stream
- Value of Site Map Path control
- Button, Link and iFrame: URL and Value properties
- Upload control
- Range Slider control
- Value of Spreadsheet control
- Value of Sliding Banner control
- Limitations
Value (Property) In french: Valeur
// Modify the image file associated with the "IMG_Image" control IMG_Image.Value = "C:\MyImages\Image.BMP"
Syntax
Finding out the value of an element Hide the details
<Result> = <Element used>.Value
<Result>: Any type This result depends on the element type. <Element used>: Type of element Name of the element to be used.
Modifying the value of an element Hide the details
<Element used>.Value = <New value>
<Element used>: Type of element Name of element to use. <New value>: Any type New value for the specified element. This parameter depends on the type of specified element. Remarks Value of Check Box control or value of option in a Check Box control The Value property is used to: - Check or uncheck an option in a Check Box control.
- Find out whether an option found in a Check Box control is checked or unchecked
<Result> is a boolean: - True if the option is checked,
- False otherwise.
To find out whether an option found in a Check Box control is checked or not, use one of the following syntaxes: ResChecked = <Check Box control>[<Option number>].Value
ResChecked = <Check Box control>[<Option number>]
ResChecked = <Option name>.Value
ResChecked = <Option name> Remark: If <Option number> is not specified, the first option is selected by default.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|