ISEdit.Value

Description

This property contains the value that is not visible on User Interface if the type name of the control is 'TICDOEdit'. Otherwise the property is equal to the control property 'Text'.

Syntax

object.Value

Part Attribute Type Description
object Required
The object always implements the ISEdit interface

Return Value

object

Example

Display some information about the edit control, including its type name and value.

Dim aEdit
Dim aEditInfo

Set aEdit = Form.Controls_("edtInform")


aEdit.Value = "1wdesfswerf3"

aEditInfo =_
  "Short Name: " & aEdit.ShortName & vbNewLine &_
  "TypeName: " & aEdit.TypeName & vbNewLine &_
  "Value: " & aEdit.Value & vbNewLine
    
Profile.MsgBox(aEditInfo) 
Note: This macro should be executed in any event handler of the form control.

Version information

Added in v7.8.0