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}Sets or returns the border's line style.{excerpt}
{signature:C#}
 public LineStyle Style{ get; set; }
{signature}{signature:vb.net}
Public Property Style() As LineStyle
{signature}
{example}{code:csharp|title=C#}

          //--- Get LineStyle
          Border.LineStyle ls = bp.Style;

          //---- Set LineStyle
          bp.Style = Border.LineStyle.Thin;
        {code}
{code:vb.net|title=vb.net}

          '--- Get LineStyle
          Dim ls As Border.LineStyle = bp.Style

          '--- Set LineStyle
          bp.Style = Border.LineStyle.Thin
        {code}

{example}
{scrollbar}