Difference between revisions of "Fontunderline Property"

From Lianjapedia
Jump to: navigation, search
(Created page with '__NOTOC__ Whether the object's font is underlined. Read/write. <pre> lUnderline = ob.fontunderline ob.fontunderline = bUnderline </pre> ===lUnderline=== Logical signifying whe…')
 
Line 3: Line 3:
  
 
<pre>
 
<pre>
lUnderline = ob.fontunderline
+
bUnderline = ob.fontunderline
 
ob.fontunderline = bUnderline
 
ob.fontunderline = bUnderline
 
</pre>
 
</pre>
 
===lUnderline===
 
Logical signifying whether the font is underlined or not:
 
 
{|class="wikitable"
 
!True||False
 
|-
 
|.T.||.F.
 
|-
 
|}
 
 
  
 
===bUnderline===
 
===bUnderline===
Boolean to set the font to underlined or not:
+
Boolean signifying whether the font is underlined or not:
  
 
{|class="wikitable"
 
{|class="wikitable"

Revision as of 09:21, 11 April 2011

Whether the object's font is underlined. Read/write.

bUnderline = ob.fontunderline
ob.fontunderline = bUnderline

bUnderline

Boolean signifying whether the font is underlined or not:

True False
True False
.T. .F.
1 0


Example

//
// Lianja custom section for page "page1" section "section1"
//
namespace custom1
public textbox1, textbox2
define class page1_section1 as section
enddefine
 
 
define class font_button as CommandButton
	proc click
		textbox1.fontunderline = not textbox1.fontunderline
		textbox2.fontunderline = not textbox2.fontunderline
	endproc
enddefine
 
proc page1_section1 
	page1_section1 = createobject("page1_section1")
 
	page1_section1.addobject("fontbutton","font_button")
	fontbutton.caption = "Toggle Underline"	
 
	page1_section1.addobject("textbox1", "Textbox")
	textbox1.value = "Textbox 1"
	textbox1.fontunderline = True
 
	page1_section1.addobject("textbox2", "Textbox")
	textbox2.value = "Textbox 2"
return page1_section1