LibreOffice 25.2 सहयोग
Returns the Green component of the given composite color code.
हरीयो (लम्बाइको रूपमा रङ)
इन्टिजर
Color: Long integer expression that specifies a composite color code for which to return the Green component.
Sub ExampleColor
Dim lVar As Long
    lVar = rgb(128,0,200)
    msgbox "रङ " & lVar & " अवयवहरू समावेश गर्दछ:" & Chr(13) &_
        "रातो = " & रातो(lVar) & Chr(१३)&_
        "हरीयो = " & हरीयो(lVar) & Chr(१३)&_
        "नीलो = " & नीलो(lVar) & Chr(१३) , ६४,"रङहरू"
End Sub