Blue Function

Returns the blue component of the specified composite color code.

แžœแžถแž€แŸ’แž™โ€‹แžŸแž˜แŸ’แž–แž“แŸ’แž’ แŸ–


Blue (Color As Long)

แžแž˜แŸ’แž›แŸƒโ€‹แžแŸ’แžšแžกแž”แŸ‹ แŸ–

แž…แŸ†แž“แžฝแž“โ€‹แž‚แžแŸ‹

แž”แŸ‰แžถแžšแŸ‰แžถแž˜แŸ‰แŸ‚แžแŸ’แžš แŸ–

Color value: Long integer expression that specifies any composite color code for which to return the blue component.

Error codes:

5 แž€แžถแžšโ€‹แž แŸ…โ€‹แž”แŸ‚แž”แž”แž‘โ€‹แž˜แžทแž“โ€‹แžแŸ’แžšแžนแž˜แžแŸ’แžšแžผแžœ

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.


แžงแž‘แžถแž แžšแžŽแŸ แŸ–


Sub ExampleColor
Dim lVar As Long
    lVar = rgb(128,0,200)
    MsgBox "The color " & lVar & " consists of:" & Chr(13) &_
        "red= " &  Red(lVar) & Chr(13)&_
        "green= " &  Green(lVar) & Chr(13)&_
        "blue= " &  Blue(lVar) & Chr(13) , 64,"colors"
End Sub