Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Description

Excerpt

Sets or returns the color of the font.

Signature
C#
C#

 public Color Color{ get; set; }
Signature
vb.net
vb.net

Public Property Color() As Color
Example
Code Block
csharp
csharp
titleC#
            //--- Get Color
          Color fontClr = fnt.Color;

          //--- Set Color
          fnt.Color = wb.Palette.GetClosestColor(100, 100, 255);
        
Code Block
vb.net
vb.net
titlevb.net
            '--- Get Color
          Dim fontClr As Color = fnt.Color

          '--- Set Color
          fnt.Color = wb.Palette.GetClosestColor(100, 100, 255)