SilverFlow.Controls.FloatingWindow.SaveActualSize C# (CSharp) Method

SaveActualSize() private method

Saves the actual size if it was not set explicitly set. E.g. the Width can be NaN, that means "Auto".
private SaveActualSize ( ) : void
return void
        private void SaveActualSize()
        {
            if (Width.IsNotSet())
                Width = ActualWidth;

            if (Height.IsNotSet())
                Height = ActualHeight;
        }
FloatingWindow