@eclipse-scout/core
Version:
Eclipse Scout runtime
20 lines • 526 B
TypeScript
import { Alignment, Status } from '../index';
export interface CellModel<TValue = any> {
cssClass?: string;
editable?: boolean;
errorStatus?: Status;
horizontalAlignment?: Alignment;
htmlEnabled?: boolean;
iconId?: string;
mandatory?: boolean;
text?: string;
flowsLeft?: boolean;
empty?: boolean;
value?: TValue;
tooltipText?: string;
foregroundColor?: string;
backgroundColor?: string;
font?: string;
sortCode?: number;
}
//# sourceMappingURL=CellModel.d.ts.map