LiteralControl.Text 属性

定义

获取或设置 LiteralControl 对象的文本内容。

public:
 virtual property System::String ^ Text { System::String ^ get(); void set(System::String ^ value); };
public virtual string Text { get; set; }
member this.Text : string with get, set
Public Overridable Property Text As String

属性值

一个 String,表示文本控件的文本内容。 默认值为 Empty

实现

示例

下面的代码示例创建一个类 , CustLiteralControlClass用于扩展类 LiteralControl 。 它通过使用未指定对象文本的构造函数创建名为 myLiteralControlClass1 的类的 LiteralControl 实例。 创建 对象后, Text 属性用于设置它包含的文本。

CustomLiteralControlClass myLiteralControlClass1= 
               new CustomLiteralControlClass();
myLiteralControlClass1.Text="This Control demonstrates the constructor1";
Dim myLiteralControlClass1 as CustomLiteralControlClass = _
new CustomLiteralControlClass()
myLiteralControlClass1.Text="This Control demonstrates the constructor1"

适用于