Creates a new
RasterColor with the specified values.
public static RasterColor Create(
int ,
int ,
int ,
int
)
'Declaration
Public Shared Function Create( _
ByVal As Integer, _
ByVal As Integer, _
ByVal As Integer, _
ByVal As Integer _
) As RasterColor
'Usage
Dim alpha As Integer
Dim red As Integer
Dim green As Integer
Dim blue As Integer
Dim value As RasterColor
value = RasterColor.Create(alpha, red, green, blue)
+(id)colorWithRed:(int)red
green:(int)green
blue:(int)blue
alpha:(int)alpha;
function Leadtools.RasterColor.Create(
alpha ,
red ,
green ,
blue
)
public:
static RasterColor Create(
int ,
int ,
int ,
int
)
Parameters
- alpha
- Alpha component
- red
- Red component
- green
- Green component
- blue
- Blue component
Return Value
The
RasterColor object this method creates.