XmlMappedRange.Interior 屬性
取得 Microsoft.Office.Interop.Excel.Interior,表示 XmlMappedRange 控制項的內部。
命名空間: Microsoft.Office.Tools.Excel
組件: Microsoft.Office.Tools.Excel (在 Microsoft.Office.Tools.Excel.dll 中)
語法
'宣告
ReadOnly Property Interior As Interior
Interior Interior { get; }
屬性值
型別:Microsoft.Office.Interop.Excel.Interior
Microsoft.Office.Interop.Excel.Interior ,表示 XmlMappedRange 控制項的內部。
範例
下列程式碼範例使用 Borders 屬性將 XmlMappedRange 的框線設為雙線,並使用 Interior 屬性將 XmlMappedRange 的內部填滿色彩設為綠色。這個程式碼範例假設目前工作表包含名為 CustomerLastNameCell 的 XmlMappedRange。
Private Sub SetBordersColorAndInterior()
Me.CustomerLastNameCell.Borders.LineStyle = _
Excel.XlLineStyle.xlDouble
Me.CustomerLastNameCell.Interior.Color = &HFF00
End Sub
private void SetBordersColorAndInterior()
{
this.CustomerLastNameCell.Borders.LineStyle =
Excel.XlLineStyle.xlDouble;
this.CustomerLastNameCell.Interior.Color = 0xFF00;
}
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。