NamedRange.NumberFormatLocal 屬性
取得或設定 NamedRange 控制項的格式化程式碼 (採用使用者語言)。
命名空間: Microsoft.Office.Tools.Excel
組件: Microsoft.Office.Tools.Excel (在 Microsoft.Office.Tools.Excel.dll 中)
語法
'宣告
Property NumberFormatLocal As Object
Get
Set
Object NumberFormatLocal { get; set; }
屬性值
型別:System.Object
NamedRange 控制項的格式化程式碼 (採用使用者語言)。
備註
Format 功能使用的格式化程式碼字串與 NumberFormat 和 NumberFormatLocal 屬性所使用的不同。
範例
下列程式碼範例會使用 NumberFormat 屬性,格式化 NamedRange 中的日期字串。 這個範例也會使用 NumberFormatLocal 屬性,以使用者的語言顯示日期格式。
這是示範文件層級自訂的範例。
Private formatRange As Microsoft.Office.Tools.Excel.NamedRange
Private Sub ApplyNumberFormatting()
formatRange = Me.Controls.AddNamedRange( _
Me.Range("C1"), "formatRange")
Me.formatRange.Value2 = "4-Apr-1974"
Me.formatRange.NumberFormat = "m/d/yyyy"
' Display the number format in the language of the user.
MessageBox.Show("The number format for the NamedRange is: " & _
Me.formatRange.NumberFormatLocal.ToString())
End Sub
Microsoft.Office.Tools.Excel.NamedRange formatRange;
private void ApplyNumberFormatting()
{
formatRange = this.Controls.AddNamedRange(
this.Range["C1", missing], "formatRange");
this.formatRange.Value2 = "4-Apr-1974";
this.formatRange.NumberFormat = "m/d/yyyy";
// Display the number format in the language of the user.
MessageBox.Show("The number format for the NamedRange is: " +
this.formatRange.NumberFormatLocal.ToString());
}
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。