@launchmenu/core
Version:
An environment for visual keyboard controlled applets
14 lines • 787 B
TypeScript
import { ITextField } from "../../_types/ITextField";
import { TextEditCommand } from "./TextEditCommand";
import { IRetrievableArgument } from "./_types/IRetrievableArgument";
/** A command to move the cursor vertically */
export declare class MoveCursorVerticalCommand extends TextEditCommand {
/**
* Creates a new command to move the cursor vertically (up or down, positive is down)
* @param textField The text field ot move the cursor for
* @param direction The movement direction
* @param expandSelection Whether to alter the current text selection
*/
constructor(textField: ITextField, direction?: IRetrievableArgument<number>, expandSelection?: IRetrievableArgument<boolean>);
}
//# sourceMappingURL=MoveCursorVerticalCommand.d.ts.map