FairyGUI.GList.RefreshVirtualList C# (CSharp) Method

RefreshVirtualList() public method

public RefreshVirtualList ( ) : void
return void
        public void RefreshVirtualList()
        {
            if (!_virtual)
                throw new Exception("FairyGUI: not virtual list");

            SetVirtualListChangedFlag(false);
        }

Same methods

GList::RefreshVirtualList ( object param ) : void

Usage Example

示例#1
0
 static public int RefreshVirtualList(IntPtr l)
 {
     try {
         FairyGUI.GList self = (FairyGUI.GList)checkSelf(l);
         self.RefreshVirtualList();
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
All Usage Examples Of FairyGUI.GList::RefreshVirtualList