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

TaskPaneInfo() public method

Initializes a new instance of the TaskPaneInfo class with default settings
public TaskPaneInfo ( ) : System
return System
        public TaskPaneInfo()
        {
            // set background values
            this.gradientStartColor = Color.Transparent;
            this.gradientEndColor = Color.Transparent;
            this.direction = LinearGradientMode.Vertical;

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

            // images
            this.backImage = null;
            this.stretchMode = ImageStretchMode.Tile;

            this.watermark = null;
            this.watermarkAlignment = ContentAlignment.BottomCenter;

            this.owner = null;
        }