FairyGUI.GList.GetFirstChildInView C# (CSharp) Méthode

GetFirstChildInView() public méthode

Get first child in view.
public GetFirstChildInView ( ) : int
Résultat int
        public override int GetFirstChildInView()
        {
            return ChildIndexToItemIndex(base.GetFirstChildInView());
        }

Usage Example

 static public int GetFirstChildInView(IntPtr l)
 {
     try {
         FairyGUI.GList self = (FairyGUI.GList)checkSelf(l);
         var            ret  = self.GetFirstChildInView();
         pushValue(l, true);
         pushValue(l, ret);
         return(2);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
All Usage Examples Of FairyGUI.GList::GetFirstChildInView