Tabindex Property

From Lianjapedia
Jump to: navigation, search

The tab index order of the object. Read/write.

nTabindex = ob.tabindex
ob.tabindex = nTabindex

nFontSize

Numeric signifying the object's tab index order.

Example

//
// Lianja custom section for page "page1" section "section1"
//
namespace custom1
define class page1_section1 as section
enddefine
 
proc page1_section1 
	page1_section1 = createobject("page1_section1")
 
	page1_section1.addobject("textbox1", "Textbox")
	textbox1.text = "Tabindex = 3"
	textbox1.tabindex = 3
 
	page1_section1.addobject("textbox2", "Textbox")
	textbox2.text = "Tabindex = 2"
	textbox2.tabindex = 1
 
	page1_section1.addobject("textbox3", "Textbox")
	textbox3.text = "Tabindex = 1"
	textbox3.tabindex = 1
return page1_section1