hosanna-ui-docs - v0.9.0
    Preparing search index...

    Interface for a collection view cell. Extends IReusable.

    interface ICollectionViewCell {
        _cacheKey?: string;
        _hid?: string;
        item?: IIdentifiable;
        row: IBaseCollectionViewRow;
        viewStatus: ViewStatus;
        applyScale(scale: number): void;
        applyViewStatus(viewStatus: ViewStatus): void;
        getFocusHolder(): undefined | ISGNGroup;
        onWillRelease(): void;
        onWillReuse(): void;
        renderAt(x: number, y: number): void;
        setContent(row: IBaseCollectionViewRow, item?: IIdentifiable): void;
    }

    Hierarchy (View Summary)

    Implemented by

    Index

    Properties

    _cacheKey?: string
    _hid?: string

    The item associated with the cell.

    The row this cell belongs to.

    viewStatus: ViewStatus

    The current view status of the cell.

    Methods