This is a copy constructor. It duplicates an existing PopMenuItem and sets the parent and the index within that parent.
Public Sub New( source As PopMenuItem, parent As PopMenu, index As Integer )
public PopMenuItem( PopMenuItem source, PopMenu parent, int index );
Parameters |
Description |
PopMenuItem source |
Input the PopMenuItem to duplicate. |
PopMenu parent |
Input the parent. |
int index |
Input the index at which to insert a new PopMenuItem in the parent's collection. |
Comments? |