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}Returns the green component of color's the RGB value.

...

{signature}
{example}{code:csharp|title=C#}
int green = clr.Green;
{code}
{code:vbnet|title=vb.net
}
Dim green As Integer = clr.Green{code}

{example}
Signature
C#C#
{excerpt}
{signature:C#}
 public int Green{ get; }
Signature
{signature}{signature:vb.net
vb.net
}
Public ReadOnly Property Green() As Integer
Example
Code Block
csharpcsharp
titleC#
Code Block
vbnetvbnettitle