File

projects/wms-framework/src/lib/models/controls/ActiveCellChangingEventArgs.ts

Description

Class to be used as a base class for the ActiveCellChanging event args.

Extends

CancellableEventArgs

Index

Properties

Properties

NewActiveCell
Type : CellBase

New Active Cell

PreviousActiveCell
Type : CellBase

Previous Active Cell

Cancel
Default value : false
Inherited from CancellableEventArgs

A flag to determine if the event must be cancelled

import { CancellableEventArgs } from './CancellableEventArgs';
import { CellBase } from './CellBase';

/**
 * Class to be used as a base class for the ActiveCellChanging event args.
 *
 * @export
 * @class ActiveCellChangingEventArgs
 * @extends {CancellableEventArgs}
 * @wType Infragistics.Controls.Grids.ActiveCellChangingEventArgs
 */
export class ActiveCellChangingEventArgs extends CancellableEventArgs {
  /**
   * Previous Active Cell
   *
   * @type {CellBase}
   * @memberof ActiveCellChangingEventArgs
   */
  PreviousActiveCell: CellBase;

  /**
   * New Active Cell
   *
   * @type {CellBase}
   * @memberof ActiveCellChangingEventArgs
   */
  NewActiveCell: CellBase;
}

result-matching ""

    No results matching ""