XmlMappedRange.Interior Property
Gets an Microsoft.Office.Interop.Excel.Interior that represents the interior of the XmlMappedRange control.
Namespace: Microsoft.Office.Tools.Excel
Assembly: Microsoft.Office.Tools.Excel (in Microsoft.Office.Tools.Excel.dll)
Syntax
'Declaration
ReadOnly Property Interior As Interior
Get
Interior Interior { get; }
Property Value
Type: Microsoft.Office.Interop.Excel.Interior
An Microsoft.Office.Interop.Excel.Interior that represents the interior of the XmlMappedRange control.
Examples
The following code example uses the Borders property to draw double lines for the border of an XmlMappedRange, and it uses the Interior property to color the interior of an XmlMappedRange green. This code example assumes that the current worksheet contains an XmlMappedRange named CustomerLastNameCell.
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 Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.