共用方式為


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 安全性

請參閱

參考

XmlMappedRange 介面

Microsoft.Office.Tools.Excel 命名空間