using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oSurfaceGridOptions { private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private int _surfaceId = 0; public int surfaceId { get {return this._surfaceId;} set {this._surfaceId = value;} } private int _pagingCount = 0; public int pagingCount { get {return this._pagingCount;} set {this._pagingCount = value;} } private int _surfaceGridEditTypeId = 0; public int surfaceGridEditTypeId { get {return this._surfaceGridEditTypeId;} set {this._surfaceGridEditTypeId = value;} } private int _addAccessType = 0; public int addAccessType { get {return this._addAccessType;} set {this._addAccessType = value;} } private int _editAccessType = 0; public int editAccessType { get {return this._editAccessType;} set {this._editAccessType = value;} } private int _viewAccessType = 0; public int viewAccessType { get {return this._viewAccessType;} set {this._viewAccessType = value;} } private int _removeAccessType = 0; public int removeAccessType { get {return this._removeAccessType;} set {this._removeAccessType = value;} } private int _cloneAccessType = 0; public int cloneAccessType { get {return this._cloneAccessType;} set {this._cloneAccessType = value;} } private int _fixedColumns = 0; public int fixedColumns { get {return this._fixedColumns;} set {this._fixedColumns = value;} } private bool _allowAdd = false; public bool allowAdd { get {return this._allowAdd;} set {this._allowAdd = value;} } private bool _allowEdit = false; public bool allowEdit { get {return this._allowEdit;} set {this._allowEdit = value;} } private bool _allowRemove = false; public bool allowRemove { get {return this._allowRemove;} set {this._allowRemove = value;} } private bool _allowView = false; public bool allowView { get {return this._allowView;} set {this._allowView = value;} } private bool _allowSort = false; public bool allowSort { get {return this._allowSort;} set {this._allowSort = value;} } private bool _allowFilter = false; public bool allowFilter { get {return this._allowFilter;} set {this._allowFilter = value;} } private bool _allowImport = false; public bool allowImport { get {return this._allowImport;} set {this._allowImport = value;} } private bool _blankInitialLoad = false; public bool blankInitialLoad { get {return this._blankInitialLoad;} set {this._blankInitialLoad = value;} } private bool _allowBulkUpdate = false; public bool allowBulkUpdate { get {return this._allowBulkUpdate;} set {this._allowBulkUpdate = value;} } private bool _allowScroll = false; public bool allowScroll { get {return this._allowScroll;} set {this._allowScroll = value;} } private bool _useFooTable = false; public bool useFooTable { get {return this._useFooTable;} set {this._useFooTable = value;} } private bool _noBorders = false; public bool noBorders { get {return this._noBorders;} set {this._noBorders = value;} } private bool _freezeHeader = false; public bool freezeHeader { get {return this._freezeHeader;} set {this._freezeHeader = value;} } private bool _iconsAsText = false; public bool iconsAsText { get {return this._iconsAsText;} set {this._iconsAsText = value;} } private bool _isTabbed = false; public bool isTabbed { get {return this._isTabbed;} set {this._isTabbed = value;} } private bool _allowExport = false; public bool allowExport { get {return this._allowExport;} set {this._allowExport = value;} } private bool _allowColVis = false; public bool allowColVis { get {return this._allowColVis;} set {this._allowColVis = value;} } private bool _allowClone = false; public bool allowClone { get {return this._allowClone;} set {this._allowClone = value;} } private bool _showWizardStatus = false; public bool showWizardStatus { get {return this._showWizardStatus;} set {this._showWizardStatus = value;} } private bool _showAggregate = false; public bool showAggregate { get {return this._showAggregate;} set {this._showAggregate = value;} } private string _viewIcon = String.Empty; public string viewIcon { get {return this._viewIcon;} set {this._viewIcon = value;} } private string _defaultSort = String.Empty; public string defaultSort { get {return this._defaultSort;} set {this._defaultSort = value;} } private string _editIcon = String.Empty; public string editIcon { get {return this._editIcon;} set {this._editIcon = value;} } private string _aggregateTitle = String.Empty; public string aggregateTitle { get {return this._aggregateTitle;} set {this._aggregateTitle = value;} } }