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

Thickness() public method

Initializes a new instance of the System.Windows.Thickness structure that has specific lengths (supplied as a System.Double) applied to each side of the rectangle.
public Thickness ( double left, double top, double right, double bottom ) : System
left double The thickness for the left side of the rectangle.
top double The thickness for the upper side of the rectangle.
right double The thickness for the right side of the rectangle.
bottom double The thickness for the lower side of the rectangle.
return System
        public Thickness(double left, double top, double right, double bottom)
        {
            Left = left;
            Top = top;
            Right = right;
            Bottom = bottom;
        }

Same methods

Thickness::Thickness ( ) : System
Thickness::Thickness ( double uniformLength ) : System