Page tree
    Created with Raphaël 2.1.0
    Loading...
Skip to end of metadata
Go to start of metadata

Description

Returns a BorderPart object representing the specified part of the border. This is the indexer for the Border object.

C#
public BorderPart this[Part part] { get; }
vb.net
Public Default ReadOnly Property Item(ByVal part As Part) As BorderPart

Parameters

part
The part of the border for which to set the line style.

Returns

The BorderPart object representing the specified part of the border.

Examples

C#
BorderPart bp = b[Border.Part.Left];
vb.net
Dim bp As BorderPart = b.Item(Border.Part.Left)
  • No labels