XmlMappedRange.Borders Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets a Borders collection that represents the borders of an XmlMappedRange control.
public:
property Microsoft::Office::Interop::Excel::Borders ^ Borders { Microsoft::Office::Interop::Excel::Borders ^ get(); };
public Microsoft.Office.Interop.Excel.Borders Borders { get; }
member this.Borders : Microsoft.Office.Interop.Excel.Borders
Public ReadOnly Property Borders As Borders
Property Value
A Borders collection that represents the borders of an 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 void SetBordersColorAndInterior()
{
this.CustomerLastNameCell.Borders.LineStyle =
Excel.XlLineStyle.xlDouble;
this.CustomerLastNameCell.Interior.Color = 0xFF00;
}
Private Sub SetBordersColorAndInterior()
Me.CustomerLastNameCell.Borders.LineStyle = _
Excel.XlLineStyle.xlDouble
Me.CustomerLastNameCell.Interior.Color = &HFF00
End Sub