AdvancedLauncher.SDK.Tools.Thickness.Thickness C# (CSharp) Method

Thickness() public method

Initializes a new instance of the Thickness that has specific lengths applied to each side of the rectangle.
public Thickness ( double uniformLength ) : System
uniformLength double The uniform length applied to all four sides of the bounding rectangle.
return System
        public Thickness(double uniformLength)
        {
            Left = Top = Right = Bottom = uniformLength;
        }

Same methods

Thickness::Thickness ( ) : System
Thickness::Thickness ( double left, double top, double right, double bottom ) : System