Plumtree UI Infrastructure API  
 

ATreeAS.GetTreeSpecificArrayDataToAppend Method 

Override this method to attach additional information specific to your implementation of the tree. Below is an example of how to do this. ITreeModelRO myModel\u0009 = (ITreeModelRO) GetModel(TREEMODEL); XPArrayList mySelectedItems = myModel.GetSelectedItems(); XPStringBuilder sb = new XPStringBuilder(); sb.Append("myArray[").Append(iSelectedItemIndex).Append("].") .Append(OBJECT_CLASS_ID).Append(" = '") .Append(((TreeLeafNode) mySelectedItems.GetElement(iSelectedItemIndex)).m_nClassID) .Append("';\n"); return sb.ToString();

public virtual string GetTreeSpecificArrayDataToAppend(
   int iSelectedItemIndex
);

Parameters

iSelectedItemIndex

Return Value

String

See Also

ATreeAS Class | com.plumtree.uiinfrastructure.tree Namespace