XPTable.Models.CellStyle.CellStyle C# (CSharp) Method

CellStyle() public method

Initializes a new instance of the CellStyle class with default settings
public CellStyle ( ) : System
return System
        public CellStyle()
        {
            this.backColor = Color.Empty;
            this.foreColor = Color.Empty;
            this.font = null;
            this.padding = CellPadding.Empty;
            this.wordWrap = false;
        }
CellStyle