Artemis.Engine.DisplayManager.SetBorderless C# (CSharp) Метод

SetBorderless() публичный Метод

Set whether or not the window form has a border.
public SetBorderless ( bool state ) : void
state bool
Результат void
        public void SetBorderless(bool state)
        {
            if (state != Borderless && !GameConstants.BorderTogglable)
                throw UntogglableException("Borderless", GameConstants.XmlElements.BORDER_TOGGLABLE);
            Borderless = state;
            dirty = true;
        }