XmlMappedRange.Orientation 屬性
取得或設定指定文字方向的值。
命名空間: Microsoft.Office.Tools.Excel
組件: Microsoft.Office.Tools.Excel (在 Microsoft.Office.Tools.Excel.dll 中)
語法
'宣告
Property Orientation As Object
Object Orientation { get; set; }
屬性值
型別:System.Object
以範圍 -90 到 90 度的整數來指定文字方向。
範例
下列程式碼範例會使用 Orientation 屬性來顯示 XmlMappedRange 中的垂直文字。這個程式碼範例假設目前工作表包含名為 CustomerLastNameCell 的 XmlMappedRange。
Private Sub DisplayVerticalText()
Me.CustomerLastNameCell.Value2 = "This text is vertical."
Me.CustomerLastNameCell.Orientation = -90
End Sub
private void DisplayVerticalText()
{
this.CustomerLastNameCell.Value2 = "This text is vertical.";
this.CustomerLastNameCell.Orientation = -90;
}
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。