共用方式為


UIColor.FromRGB 方法

定義

多載

FromRGB(Byte, Byte, Byte)

使用指定的紅色、綠色和藍色元件來建立純色。

FromRGB(Int32, Int32, Int32)

從指定的紅色、綠色和藍色元件組合中建立色彩。

FromRGB(nfloat, nfloat, nfloat)

使用指定的紅色、綠色和藍色元件來建立純色。

FromRGB(Byte, Byte, Byte)

使用指定的紅色、綠色和藍色元件來建立純色。

public static UIKit.UIColor FromRGB (byte red, byte green, byte blue);
static member FromRGB : byte * byte * byte -> UIKit.UIColor

參數

red
Byte

紅色元件,0 到 255。

green
Byte

綠色元件 0 到 255。

blue
Byte

藍色元件值 0 到 255。

傳回

備註

這可從背景執行緒使用。

適用於

FromRGB(Int32, Int32, Int32)

從指定的紅色、綠色和藍色元件組合中建立色彩。

public static UIKit.UIColor FromRGB (int red, int green, int blue);
static member FromRGB : int * int * int -> UIKit.UIColor

參數

red
Int32
green
Int32
blue
Int32

傳回

備註

這可從背景執行緒使用。

適用於

FromRGB(nfloat, nfloat, nfloat)

使用指定的紅色、綠色和藍色元件來建立純色。

public static UIKit.UIColor FromRGB (nfloat red, nfloat green, nfloat blue);
static member FromRGB : nfloat * nfloat * nfloat -> UIKit.UIColor

參數

red
nfloat

紅色元件,0.0 到 1.0f。

green
nfloat

綠色元件 0.0 至 1.0f。

blue
nfloat

藍色元件值 0.0 到 1.0f。

傳回

備註

這可從背景執行緒使用。

適用於