XmlMappedRange.Text 屬性 (2007 系統)
更新:2007 年 11 月
取得 XmlMappedRange 控制項的文字。
命名空間: Microsoft.Office.Tools.Excel
組件: Microsoft.Office.Tools.Excel.v9.0 (在 Microsoft.Office.Tools.Excel.v9.0.dll 中)
語法
<BrowsableAttribute(False)> _
Public ReadOnly Property Text As Object
Dim instance As XmlMappedRange
Dim value As Object
value = instance.Text
[BrowsableAttribute(false)]
public Object Text { get; }
屬性值
XmlMappedRange 控制項的文字。
範例
下列程式碼範例會針對包含格式化數字的儲存格,比較 Text 和 Value2 屬性之間的差異。此程式碼範例假設目前工作表包含名為 CustomerLastNameCell 的 XmlMappedRange。
Private Sub CompareTextAndValue2()
Me.CustomerAddress1Cell.Value2 = 1198.3
Me.CustomerAddress1Cell.NumberFormat = "$#,##0"
' Displays "1198.3".
MsgBox("The Value2 value is: " & Me.CustomerAddress1Cell.Value2.ToString())
' Displays "$1,198".
MsgBox("The Text value is: " & Me.CustomerAddress1Cell.Text.ToString())
End Sub
private void CompareTextAndValue2()
{
this.CustomerAddress1Cell.Value2 = 1198.3;
this.CustomerAddress1Cell.NumberFormat = "$#,##0";
// Displays "1198.3".
MessageBox.Show("The Value2 value is: " +
this.CustomerAddress1Cell.Value2.ToString());
// Displays "$1,198".
MessageBox.Show("The Text value is: " +
this.CustomerAddress1Cell.Text.ToString());
}
使用權限
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。