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 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。