ListControlText

Help Contents GUI programming ListControls ListControlText
ListControlRow ListControlSort

ListControlText


outputs the item text of the first column in the row where the latest event of a ListControl was processed.

Examples:

lc=(ListControl [][MyListControl]
	[	row=ListControlRow
		(pr word [row=] row
			word [column=] ListControlColumn
			ListControlText
			[Selected])
	]
	[	(pr word [row=] ListControlRow
			word [column=] ListControlColumn
			ListControlText
			[Activated])
	]
	[	c=ListControlColumn
		(pr word [column=] c
			[Columnclick])
		ListControlSort lc c
	] wxLC_REPORT [10 20][400 300])
ListControlInsertColumn lc 0 [Logo]
ListControlInsertColumn lc 1 [Main Author]
ListControlSet lc [
	[UCBLogo [Brian Harvey]]
	[MSWLogo [George Mills]]]

Examples:

References:

ListControlRow ListControlSort