XmlMappedRange.Text 屬性
取得 XmlMappedRange 控制項的文字。
命名空間: Microsoft.Office.Tools.Excel
組件: Microsoft.Office.Tools.Excel (在 Microsoft.Office.Tools.Excel.dll 中)
語法
'宣告
ReadOnly Property Text As Object
Get
Object Text { get; }
屬性值
型別:System.Object
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());
}
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。