projects/wms-framework/src/lib/models/controls/FilterRow.ts
Class to Filter Row
Properties |
RowType |
Type : RowType
|
Default value : RowType.FilterRow
|
set the Row Type for the cell |
import { RowType } from './RowType';
/**
* Class to Filter Row
*
* @export
* @class FilterRow
* @wType Infragistics.Controls.Grids.Primitives.FilterRow
*/
export class FilterRow {
/**
* set the Row Type for the cell
*
* @type {RowType}
* @memberof FilterRow
*/
RowType: RowType = RowType.FilterRow;
}