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'.
object.Value
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISEdit interface |
object
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)