LayoutFarm.RenderElement.InvalidateGraphics C# (CSharp) Méthode

InvalidateGraphics() public méthode

public InvalidateGraphics ( ) : bool
Résultat bool
        public bool InvalidateGraphics()
        {
            propFlags &= ~RenderElementConst.IS_GRAPHIC_VALID;
            if ((uiLayoutFlags & RenderElementConst.LY_SUSPEND_GRAPHIC) != 0)
            {
#if DEBUG
                dbugVRoot.dbug_PushInvalidateMsg(RootGraphic.dbugMsg_BLOCKED, this);
#endif
                return false;
            }

            Rectangle rect = new Rectangle(0, 0, b_width, b_height);
            RootInvalidateGraphicArea(this, ref rect);
            return true;//TODO: review this 
        }
        public void InvalidateGraphicBounds()