Page tree

Versions Compared

Key

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

...

Wiki Markup
{description}
{excerpt}Sets or returns a {msdn:System.Drawing.Color

...

|System.Drawing.Color

...



{remarks}
{example}{code:csharp|title=C#}

          //--- Get Color
          System.Drawing.Color borderColor = brdr.Color;

          //--- Set Color
          brdr.Color = System.Drawing.Color.Blue;
        
{code}
{code:vbnet|title=vb.net
}

          '--- Get Color
          Dim borderColor As System.Drawing.Color = brdr.Color

          '--- Set Color
          brdr.Color = System.Drawing.Color.Blue
        {code}

{example}
Signature
C#C#
} object that represents the color of this border.{excerpt}
{signature:C#}
 public System.Drawing.Color Color{ get; set; }
Signature
{signature}{signature:vb.net
vb.net
}
Public Property Color() As System.Drawing.Color
Remarks
MS Word
{signature}
{remarks}MS Word equivalent: Format menu > Borders and Shading... > Borders tab > Color:
Example
Code Block
csharpcsharp
titleC#
Code Block
vbnetvbnettitle