[<<Previous Entry]
[^^Up^^]
[Next Entry>>]
[Menu]
[About The Guide]
OnItem()
Reactivates an item of a submenu
Syntax:
OnItem( aMenu, nSubMenu, nPos ) -> Nil
aMenu : The menu created with NewMenu()
nSubMenu : The number of the submenu where reactivate the item
nPos : The position of the item in the submenu
Description:
Reactivates a item. The item is selectionable again.
A line can not be reactivate, because is a non selectionable item
during all the process. Only can be reactivate an item that was
previously desactivated.
Return:
Nothing.
Example:
aMenu := NewMenu( { "^System", "^Tools", "^Other" }, ;
{ "N/W", "R/W", "W/B", "W+/B", ;
"N/W", "W/B", "N+/W", "R/W", "GR+/B" } )
AddItem ( aMenu, 1, "Item ^1", "Message 1" )
AddItem ( aMenu, 1, "Item ^2", "Message 2" )
OffItem ( aMenu, 1, 2 ) // Desactive the second item
OnItem ( aMenu, 1, 2 ) // Now i reactive it
See Also:
OffItem()
This page created by ng2html v1.05, the Norton guide to HTML conversion utility.
Written by Dave Pearson