cheetah-grid
    Preparing search index...

    Type Alias ActionAreaPredicate

    ActionAreaPredicate: (
        meta: CellAddress & {
            grid: ListGridAPI<any>;
            pointInCell: { x: number; y: number };
            pointInDrawingCanvas: { x: number; y: number };
        },
    ) => boolean

    Type declaration

      • (
            meta: CellAddress & {
                grid: ListGridAPI<any>;
                pointInCell: { x: number; y: number };
                pointInDrawingCanvas: { x: number; y: number };
            },
        ): boolean
      • Parameters

        • meta: CellAddress & {
              grid: ListGridAPI<any>;
              pointInCell: { x: number; y: number };
              pointInDrawingCanvas: { x: number; y: number };
          }
          • grid: ListGridAPI<any>
          • pointInCell: { x: number; y: number }

            The mouse position relative to the cell position.

          • pointInDrawingCanvas: { x: number; y: number }

            The mouse position relative to the drawing canvas.

        Returns boolean