e-virt-table
Version:
A powerful data table based on canvas. You can use it as data grid、Microsoft Excel or Google sheets. It supports virtual scroll、cell edit etc.
22 lines (21 loc) • 429 B
TypeScript
import type Context from './Context';
export default class Autofill {
private ctx;
private maxColRowCell;
constructor(ctx: Context);
private init;
/**
* 是否在填充
* @returns
*/
private isAutofillIng;
private setMousedown;
private setMouseUp;
private setAutofill;
/**
* 填充数据
*/
private autofillData;
private mouseenter;
destroy(): void;
}