...
Code Block |
---|
Object.SetBackColor(tbr, tbg, tbb) |
Code Block |
---|
|
Object.SetBackColor(tbr, tbg, tbb, tba) |
Parameters
tbr, tbg, tbb, tbA
Red, green, blue and blue alpha components of the background color (optional). If not alpha component specified, thend efault value is 255.
Applies To: XFRX#DRAW, XFRX#XML, PDFL#INIT
Examples
Code Block |
---|
m.loDRAW=EVALUATE([xfrx("XFRX#DRAW")])
m.loDRAW.SetBackColor(255, 0, 0)
|
Code Block |
* |
---|
title | Backcolor with alpha |
---|
|
m.loDRAW=EVALUATE([xfrx("XFRX#DRAW)"])
m.loDRAW.SetBackColor(255, 0, 0, 128)
|