SeparatorBoxInfo Constructor(Boolean,Size,Color,Color,CharBoxStyle,Padding,Padding,CharBoxBorderInfo,Font,ContentAlignment,SeparatorShape,Size)
In This Topic
Initializes a new instance of the
SeparatorBoxInfo.
Syntax
'Declaration
Public Function New( _
ByVal As Boolean, _
ByVal As Size, _
ByVal As Color, _
ByVal As Color, _
ByVal As CharBoxStyle, _
ByVal As Padding, _
ByVal As Padding, _
ByVal As CharBoxBorderInfo, _
ByVal As Font, _
ByVal As ContentAlignment, _
ByVal As SeparatorShape, _
ByVal As Size _
)
'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 separatorShape As SeparatorShape
Dim separatorSize As Size
Dim instance As New SeparatorBoxInfo(autoSize, size, backColor, foreColor, style, margin, padding, border, font, contentAlignment, separatorShape, separatorSize)
public SeparatorBoxInfo(
bool ,
Size ,
Color ,
Color ,
CharBoxStyle ,
Padding ,
Padding ,
CharBoxBorderInfo ,
Font ,
ContentAlignment ,
SeparatorShape ,
Size
)
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 inputable box.
- backColor
- A System.Drawing.Color indicates the background color.
- foreColor
- A System.Drawing.Color indicates the foreground color.
- style
- A CharBoxStyle indicates the inputable 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 inputable box.
- font
- A Font indicates the text font of the inputable box.
- contentAlignment
- A System.Drawing.ContentAlignment value indicates the content alignment of the inputable box.
- separatorShape
- A SeparatorShape indicating the shape of the separator box.
- separatorSize
- A System.Drawing.Size indicates the size of the separator box.
See Also