FairyGUI.Container.GetChildAt C# (CSharp) Method

GetChildAt() public method

public GetChildAt ( int index ) : DisplayObject
index int
return DisplayObject
        public DisplayObject GetChildAt(int index)
        {
            return _children[index];
        }

Usage Example

Example #1
0
 static public int GetChildAt(IntPtr l)
 {
     try {
         FairyGUI.Container self = (FairyGUI.Container)checkSelf(l);
         System.Int32       a1;
         checkType(l, 2, out a1);
         var ret = self.GetChildAt(a1);
         pushValue(l, true);
         pushValue(l, ret);
         return(2);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
All Usage Examples Of FairyGUI.Container::GetChildAt