共用方式為


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

實作

範例

下列程式碼範例會建立可擴充 類別的 LiteralControl 類別 CustLiteralControlClass 。 它會使用未指定 物件文字的建構函式,建立名為 myLiteralControlClass1LiteralControl 類別實例。 建立物件之後, 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"

適用於