VBScript RGB- funksie


❮ Voltooi VBScript-verwysing

Die RGB-funksie gee 'n getal terug wat 'n RGB-kleurwaarde verteenwoordig.

Sintaksis

RGB(red,green,blue)

Parameter Description
red Required. A number from 0 to 255, inclusive, representing the red component of the color
green Required. A number from 0 to 255, inclusive, representing the green component of the color
blue Required. A number from 0 to 255, inclusive, representing the blue component of the color

Voorbeelde

Voorbeeld 1

<%

response.write(rgb(255,0,0))

%>

Die afvoer van die kode hierbo sal wees:

255

Voorbeeld 2

<%

response.write(rgb(255,30,30))

%>

Die afvoer van die kode hierbo sal wees:

1974015

❮ Voltooi VBScript-verwysing