Interface IGridviewReactProps

interface IGridviewReactProps {
    className?: string;
    components: Record<string, FunctionComponent<IGridviewPanelProps<any>>>;
    disableAutoResizing?: boolean;
    hideBorders?: boolean;
    onReady: ((event) => void);
    orientation?: HORIZONTAL | VERTICAL;
    proportionalLayout?: boolean;
}

Properties

className?: string
components: Record<string, FunctionComponent<IGridviewPanelProps<any>>>
disableAutoResizing?: boolean
hideBorders?: boolean
onReady: ((event) => void)

Type declaration

orientation?: HORIZONTAL | VERTICAL
proportionalLayout?: boolean

Generated using TypeDoc