File

projects/wms-framework/src/lib/models/events/DroppedEventArgs.ts

Description

Creates an instance of DroppedEventArgs.

Index

Properties

Properties

Public DropPosition
Type : DropPosition

Specifies where was the item dropped (DropOnto, DropAfter, DropBefore).

Public SourceItem
Type : any

Item that is being dragged.

Public TargetItem
Type : any

Item that is being dropped in the SourceItem.

import { DropPosition } from '../enums/DropPosition';

/**
 *  Creates an instance of DroppedEventArgs.
 *
 * @export
 * @class DroppedEventArgs
 * @wType Infragistics.Controls.Menus.DroppedEventArgs
 */
export class DroppedEventArgs {
  /**
   * Specifies where was the item dropped (DropOnto, DropAfter, DropBefore).
   *
   * @public
   * @type {DropPosition}
   */
  public DropPosition: DropPosition;

  /**
   * Item that is being dragged.
   *
   * @public
   * @type {any}
   */
  public SourceItem: any;

  /**
   * Item that is being dropped in the SourceItem.
   *
   * @public
   * @type {any}
   */
  public TargetItem: any;
}

result-matching ""

    No results matching ""