共用方式為


XmlMappedRange.Style 屬性

取得或設定 Microsoft.Office.Interop.Excel.Style,表示 XmlMappedRange 控制項的樣式。

命名空間:  Microsoft.Office.Tools.Excel
組件:  Microsoft.Office.Tools.Excel (在 Microsoft.Office.Tools.Excel.dll 中)

語法

'宣告
Property Style As Object
Object Style { get; set; }

屬性值

型別:System.Object
Microsoft.Office.Interop.Excel.Style ,表示 XmlMappedRange 控制項的樣式。

範例

下列程式碼範例使用 Style 屬性來顯示 XmlMappedRange 目前樣式的名稱。這個程式碼範例假設目前工作表包含名為 CustomerLastNameCell 的 XmlMappedRange

Private Sub DisplayStyle()
    Dim style1 As Excel.Style = CType(Me.CustomerLastNameCell.Style, Excel.Style)
    MsgBox("The current style of the XmlMappedRange is: " & style1.Name)
End Sub
private void DisplayStyle()
{
    Excel.Style style1 = (Excel.Style)this.CustomerLastNameCell.Style;
    MessageBox.Show("The current style of the XmlMappedRange is: " +
        style1.Name);
}

.NET Framework 安全性

請參閱

參考

XmlMappedRange 介面

Microsoft.Office.Tools.Excel 命名空間