Difference between revisions of "Backcolor Property"

From Lianjapedia
Jump to: navigation, search
(Created page with 'An object's background color. Read/write. <pre> ob.backcolor = nColor | cColor </pre> ===nColor=== Numeric constant: <code lang="recital"> ob.backcolor = 16711935 </code> Or…')
(No difference)

Revision as of 07:07, 7 April 2011

An object's background color. Read/write.

ob.backcolor = nColor | cColor

nColor

Numeric constant:

ob.backcolor = 16711935

Or using the rgb() function:

ob.backcolor = rgb(255,0,255)

cColor

Color constant:

ob.backcolor = "magenta"

HTML style six-digit hexadecimal number for red, green, blue components:

ob.backcolor = "#FF00FF"