Spread Windows Forms 17
GrapeCity.Win.PluginInputMan Assembly / GrapeCity.Win.Spread.InputMan.CellType Namespace / LiteralBoxInfo Class / LiteralBoxInfo Constructor / LiteralBoxInfo Constructor(Boolean,Size,Color,Color,CharBoxStyle,Padding,Padding,CharBoxBorderInfo,Font,ContentAlignment,String)
A bool value indicating whether the height of the control automatically adjusts when the font assigned to the control is changed.
A System.Drawing.Size indicates the size of the literal box.
A System.Drawing.Color indicates the background color.
A System.Drawing.Color indicates the foreground color.
A CharBoxStyle indicates the literal box style.
A System.Windows.Forms.Padding indicates the margins.
A System.Windows.Forms.Padding indicates the paddings.
A CharBoxBorderInfo indicates the border of the literal box.
A System.Drawing.Font indicates the text font of the literal box.
A System.Drawing.ContentAlignment value indicates the content alignment of the literal box.
A System.String value indicates the text of the literal box.


In This Topic
    LiteralBoxInfo Constructor(Boolean,Size,Color,Color,CharBoxStyle,Padding,Padding,CharBoxBorderInfo,Font,ContentAlignment,String)
    In This Topic
    Initializes a new instance of the InputBoxInfo.
    Syntax
    'Declaration
     
    
    Public Function New( _
       ByVal autoSize As Boolean, _
       ByVal size As Size, _
       ByVal backColor As Color, _
       ByVal foreColor As Color, _
       ByVal style As CharBoxStyle, _
       ByVal margin As Padding, _
       ByVal padding As Padding, _
       ByVal border As CharBoxBorderInfo, _
       ByVal font As Font, _
       ByVal contentAlignment As ContentAlignment, _
       ByVal text As String _
    )
    'Usage
     
    
    Dim autoSize As Boolean
    Dim size As Size
    Dim backColor As Color
    Dim foreColor As Color
    Dim style As CharBoxStyle
    Dim margin As Padding
    Dim padding As Padding
    Dim border As CharBoxBorderInfo
    Dim font As Font
    Dim contentAlignment As ContentAlignment
    Dim text As String
     
    Dim instance As New LiteralBoxInfo(autoSize, size, backColor, foreColor, style, margin, padding, border, font, contentAlignment, text)

    Parameters

    autoSize
    A bool value indicating whether the height of the control automatically adjusts when the font assigned to the control is changed.
    size
    A System.Drawing.Size indicates the size of the literal box.
    backColor
    A System.Drawing.Color indicates the background color.
    foreColor
    A System.Drawing.Color indicates the foreground color.
    style
    A CharBoxStyle indicates the literal box style.
    margin
    A System.Windows.Forms.Padding indicates the margins.
    padding
    A System.Windows.Forms.Padding indicates the paddings.
    border
    A CharBoxBorderInfo indicates the border of the literal box.
    font
    A System.Drawing.Font indicates the text font of the literal box.
    contentAlignment
    A System.Drawing.ContentAlignment value indicates the content alignment of the literal box.
    text
    A System.String value indicates the text of the literal box.
    See Also