Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0
Description

Excerpt

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

Signature
C#C#
Wiki Markup
{description}
{excerpt}Returns a BorderPart object representing the specified part of the border. This is the indexer for the Border object.{excerpt}
{signature:C#}
 public BorderPart this[Part part] { get; }
Signature
{signature}{signature:vb.net
vb.net
}
Public Default ReadOnly Property Item(ByVal part As Part) As BorderPart
Parameters

...

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

Returns

The BorderPart object representing the specified part of the border.

{signature}
{parameters}
{param:part}The part of the border for which to set the line style.{param}
{returns}The BorderPart object representing the specified part of the border.{returns}
{example}{code:csharp|title=C#}
BorderPart bp = b[Border.Part.Left];
{code}
{code:vb.net
|title=vb.net
}
Dim bp As BorderPart = b.Item(Border.Part.Left)
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle

...

{code}

{example}
{scrollbar}