{description}
{excerpt}Returns the blue component of the color's RGB value.{excerpt}
{signature:C#}
 public int Blue{ get; }
{signature}{signature:vb.net}
Public ReadOnly Property Blue() As Integer
{signature}
{example}{code:csharp|title=C#}
int blue = clr.Blue;{code}
{code:vb.net|title=vb.net}
Dim blue As Integer = clr.Blue{code}

{example}