System.Windows.Forms.TableView.TableRowButton.TableRowButton C# (CSharp) Method

TableRowButton() public method

public TableRowButton ( TableButtonStyle style ) : System
style TableButtonStyle
return System
            public TableRowButton(TableButtonStyle style)
            {
                BackColor = style.BackColor;
                HoverColor = style.HoverColor;
                BorderColor = style.BorderColor;
                BorderHoverColor = style.BorderHoverColor;
                BorderSelectColor = style.BorderSelectColor;
                Padding = new Padding(8, 0, 8, 0);
                Size = new Size(100, 20);
                TextAlign = ContentAlignment.MiddleRight;
            }
TableView.TableRowButton