Color.FromRgb

FromRgb(byte, byte, byte)

要求された ged、green、blue 値を持つ新しい Color を返します。 すべての色成分は 0 ~ 255 の範囲内である必要があります。

public static Color FromRgb(byte red, byte green, byte blue)
パラメータタイプ説明
redByte色の赤の要素を表すバイト。
greenByte色の緑の要素を表すバイト。
blueByte色の青の要素を表すバイト。

戻り値

の新しいインスタンスColorクラス

関連項目


FromRgb(int, int, int)

要求された ged、green、blue 値を持つ新しい Color を返します。 すべての色成分は 0 ~ 255 の範囲内である必要があります。

public static Color FromRgb(int red, int green, int blue)
パラメータタイプ説明
redInt32色の赤の要素を表す int。
greenInt32色の緑の要素を表す int。
blueInt32色の青の要素を表す int。

戻り値

の新しいインスタンスColorクラス

関連項目


FromRgb(float, float, float)

要求された ged、green、blue の値を持つ新しい Color を返します。 すべてのカラー コンポーネントは 0 ~ 1 の範囲内である必要があります。

public static Color FromRgb(float red, float green, float blue)
パラメータタイプ説明
redSingle色の赤の要素を表す float。
greenSingle色の緑の要素を表す float。
blueSingle色の青の要素を表す float。

戻り値

の新しいインスタンスColorクラス

関連項目