Backcolor Property

From Lianjapedia
Jump to: navigation, search

An object's background color. Read/write.

nBackColor = ob.backcolor
ob.backcolor = nColor | cColor

nBackColor

Backcolor is returned as a decimal number.

nColor

Decimal number:

ob.backcolor = 16711935

Or decimal using the rgb() function:

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

Hexadecimal number:

ob.backcolor = 0xFF00FF

cColor

Color constant:

ob.backcolor = "magenta"

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

ob.backcolor = "#FF00FF"

Example

//
// Lianja custom section for page "page1" section "section1"
//
namespace custom
public textbox1
define class page1_section1 as section
enddefine
 
define class color_button as CommandButton
	proc click
		textbox1.backcolor = "green"
		messagebox(etos(int(textbox1.backcolor)),0,"Backcolor")
	endproc
enddefine
 
proc page1_section1 
	page1_section1 = createobject("page1_section1")
 
	page1_section1.addobject("colorbutton","color_button")
	colorbutton.caption = "Go Green!"
 
	page1_section1.addobject("textbox1", "Textbox")
	textbox1.value = "Textbox 1"
	textbox1.backcolor = rgb(255,0,255)
 
return page1_section1