Control.TextValue 属性 | |
表示控件中保存的值的字符串。
命名空间:
XSharp.VO.SDK
程序集:
XSharp.VOGUIClasses (在 XSharp.VOGUIClasses.dll 中) 版本:2.22 GA
语法 VIRTUAL PROPERTY TextValue AS STRING GET SET
public virtual string TextValue { get; set; }
查看代码属性值
类型:
String表示控件中保存的值的字符串。
备注
例如,在标准编辑控件中,值可以是“Jones”或“$14,683.00”。在复选框中,值可以是“TRUE”或“FALSE”。
对于按钮,Control:TextValue 设置为 NULL_STRING。
在列表框或组合框中,Control:TextValue 保存显示值文本。
在单选按钮组中,Control:TextValue 保存当前选中的单选按钮的标题文本。
请注意,字符串根据控件字段规范中包含的 picture 子句进行格式化;反过来,链接到数据服务的控件从服务字段继承字段规范 - 因此也继承 picture 子句。
示例
以下示例演示了 Control:TextValue 属性的使用:
1
2?ValType(oDCAmountControl:TextValue)
3
4cAmount := oDCAmountControl:TextValue
5
6oDCAmountControl:TextValue := "5"
参见