Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin
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:vb.net}
Public Default ReadOnly Property Item(ByVal part As Part) As BorderPart
{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){code}

{example}
{scrollbar}