Tree View actions
add: (Object)
The add: action adds the specified object as a root node in the tree view.
add: (Object) after: (Object)
The add:after: action adds the specified object to the tree view after a previously added item. The new node will have the same parent as the previously added node.
add: (Object) before: (Object)
The add:before: action adds the specified object to the tree view before a previously added item. The new node will have the same parent as the previously added node.
add: (Object) parent: (Object)
The add:parent: action adds the specified object to the tree view as a child of a previously added item. The new node will appear after any existing children of the parent node.
add: (Object) parent: (Object) index: (Integer)
The add:parent:index: action adds the specified object to the tree view as a child of a previously added item, at the specified index.
addAll: (OrderedCollection)
The addAll: action adds all of the objects in the specified collection to the tree view as root nodes.
addAll: (OrderedCollection) parent: (Object)
The addAll:parent: action adds all of the objects in the specified collection to the tree view as children of the specified parent node.
childrenForItem: (Object)
The childrenForItem: action answers a collection containing all of the children of the specified item in the tree view.
closeWidget
The closeWidget action closes the part, but the connections are maintained and the widget can be reopened.
collapseItem: (Object)
The collapseItem: action collapses the tree for the specified item in the tree view.
contentsHelp
The contentsHelp action requests that the contents of the help file for the part be displayed.
deleteAllItems
The deleteAllItems action removes all items from the part.
deleteItem: (Object)
The deleteItem: action removes the specified item from the part.
deleteItems: (OrderedCollection)
The deleteItems: action removes all of the items in the specified collection from the part.
deselectAllItems
The deselectAllItems action deselects all of the items in the part.
destroyPart
The destroyPart action destroys the part and its children, and releases all associated resources. You can use this action for both visual and nonvisual parts. All connections to the destroyed part are removed.
disable
The disable action makes the part unavailable for selection.
enable
The enable action makes the part available for selection.
expandItem: (Object)
The expandItem: action expands the tree for an item in the tree view.
help
The help action requests that the general help associated with the part be displayed. General help is the main help panel associated with the part. You usually access general help through a help button on a window. From the general help panel you can access other help panels (such as menu and field help).
helpForHelp
The helpForHelp action requests that help for help be displayed. The help for help panel provides instructions for using a help system. You usually access this help panel from the Help menu. It can contain information such as the structure and organization of the help library.
helpIndex
The helpIndex action requests that the help index be displayed. The help index lists key words or phrases that, when selected, link you to the help panel that explains the word or phrase.
hide
The hide action makes the part invisible.
isExpandedItem: (Object)
The isExpandedItems: action answers true if the specified object is currently expanded in the tree view.
keysHelp
The keysHelp action requests that the keys help be displayed. The keys help panel explains the function and use of certain keyboard keys in an application.
openWidget
The openWidget action opens the part.
parentForItem: (Object)
The parentForItem: action answers the parent for the specified item in the tree view.
rootForItem: (Object)
The rootForItem: action answers the root object for the specified item in the tree view.
setFocus
The setFocus action sets input focus to the part. Focus determines whether or not keyboard input is directed to the part.
The setFocus action acts differently depending on which part is receiving the action. For example, if you connect the setFocus action to a Window part, the window comes to the foreground and is the active window. Or, if you connect the setFocus action to a Text part in a window, the cursor is moved to this field.
show
The show action makes the part visible.
showItem: (Object)
The showItem: action makes the specified item visible in the tree view. This action causes the tree view to automatically scroll to a position where the specified item is visible.
Last modified date: 01/29/2015