Red-funksjonen

Returns the Red component of the specified composite color code.

Syntaks:


Red (ColorNumber As Long)

Returverdi:

Heiltal

Parameter:

ColorNumber: Long integer expression that specifies any composite color code for which to return the Red component.

Feilkodar

5 Ugyldig prosedyreoppkall

tip

The color picker dialog details the red, green and blue components of a composite color code, as well as its hexadecimal expression. Changing the color of text and selecting Custom color displays the color picker dialog.


Eksempel:


Sub ExampleColor
Dim lVar As Long
    lVar = rgb(128,0,200)
    MsgBox "Fargen " & lVar & " er set saman av:" & Chr(13) &_
        "raud= " & Red(lVar) & Chr(13)&_
        "grøn= " & Green(lVar) & Chr(13)&_
        "blå= " & Blue(lVar) & Chr(13), 64, "fargar"
End Sub