NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Color.FromARGB (Int32, Int32, Int32, Int32)

Creates a color object from the specified ARGB values. The resulting color object will have 32 bit precision.

[Visual Basic]
Overloads Public Shared Function FromARGB( _
   ByVal alpha As Integer, _
   ByVal red As Integer, _
   ByVal green As Integer, _
   ByVal blue As Integer _
) As Color
[C#]
public static Color FromARGB(
   int alpha,
   int red,
   int green,
   int blue
);
[C++]
public: static Color FromARGB(
   int alpha,
   int red,
   int green,
   int blue
);
[JScript]
public static function FromARGB(
   alpha : int,
   red : int,
   green : int,
   blue : int
) : Color;

Parameters

alpha
[To be supplied.]
red
[To be supplied.]
green
[To be supplied.]
blue
[To be supplied.]

See Also

Color Structure | Color Members | System.Drawing Namespace | Color.FromARGB Overload List