FairyGUI.GComponent.SetBoundsChangedFlag C# (CSharp) Method

SetBoundsChangedFlag() public method

Notify the component the bounds should recaculate.
public SetBoundsChangedFlag ( ) : void
return void
        public void SetBoundsChangedFlag()
        {
            if (scrollPane == null && !_trackBounds)
                return;

            _boundsChanged = true;
        }

Usage Example

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