Search Results for

    Show / Hide Table of Contents

    Struct Thickness

    Describes the thickness of a frame around a rectangle. Four System.Int32 values describe the Left, Top, Right, and Bottom sides of the rectangle, respectively.
    Inherited Members
    System.ValueType.Equals(System.Object)
    System.ValueType.GetHashCode()
    System.ValueType.ToString()
    System.Object.Equals(System.Object, System.Object)
    System.Object.GetType()
    System.Object.ReferenceEquals(System.Object, System.Object)
    Namespace: Terminal.Gui
    Assembly: Terminal.Gui.dll
    Syntax
    public struct Thickness

    Constructors

    Thickness(Int32)

    Initializes a new instance of the Thickness structure that has the specified uniform length on each side.
    Declaration
    public Thickness(int length)
    Parameters
    Type Name Description
    System.Int32 length

    Thickness(Int32, Int32, Int32, Int32)

    Initializes a new instance of the Thickness structure that has specific lengths (supplied as a System.Int32) applied to each side of the rectangle.
    Declaration
    public Thickness(int left, int top, int right, int bottom)
    Parameters
    Type Name Description
    System.Int32 left
    System.Int32 top
    System.Int32 right
    System.Int32 bottom

    Fields

    Bottom

    Gets or sets the width, in integers, of the lower side of the bounding rectangle.
    Declaration
    public int Bottom
    Field Value
    Type Description
    System.Int32

    Left

    Gets or sets the width, in integers, of the left side of the bounding rectangle.
    Declaration
    public int Left
    Field Value
    Type Description
    System.Int32

    Right

    Gets or sets the width, in integers, of the right side of the bounding rectangle.
    Declaration
    public int Right
    Field Value
    Type Description
    System.Int32

    Top

    Gets or sets the width, in integers, of the upper side of the bounding rectangle.
    Declaration
    public int Top
    Field Value
    Type Description
    System.Int32
    In This Article
    Back to top Generated by DocFX