ZForge.Controls.ExplorerBar.ExpandoInfo.ExpandoInfo C# (CSharp) Method

ExpandoInfo() public method

Initializes a new instance of the ExpandoInfo class with default settings
public ExpandoInfo ( ) : System
return System
        public ExpandoInfo()
        {
            // set background color values
            this.specialBackColor = Color.Transparent;
            this.normalBackColor = Color.Transparent;

            // set border values
            this.specialBorder = new Border(1, 0, 1, 1);
            this.specialBorderColor = Color.Transparent;

            this.normalBorder = new Border(1, 0, 1, 1);
            this.normalBorderColor = Color.Transparent;

            // set padding values
            this.specialPadding = new Padding(12, 10, 12, 10);
            this.normalPadding = new Padding(12, 10, 12, 10);

            this.specialBackImage = null;
            this.normalBackImage = null;

            this.watermarkAlignment = ContentAlignment.BottomRight;

            this.owner = null;
        }