Blauw-functie
Returns the blue component of the specified composite color code.
Syntaxis:
Blue (Kleur As Long)
Teruggegeven waarde:
Integer
Parameter:
Color value: Long integer expression that specifies any composite color code for which to return the blue component.
Voorbeeld:
Sub ExampleColor
Dim lVar As Long
lVar = rgb(128,0,200)
MsgBox "De kleur " & lVar & " bevat de componenten:" & Chr(13) &_
"rood = " & Rood(lVar) & Chr(13)&_
"groen= " & Groen(lVar) & Chr(13)&_
"blauw= " & Blauw(lVar) & Chr(13), 64,"Kleuren"
End Sub