File

projects/wms-framework/src/lib/regionsframework/IViewsCollection.ts

Description

View collection interface

Extends

Iterable

Index

Methods

Methods

Contains
Contains(view: unknown)

Checks if the collection contains a view

Parameters :
Name Type Optional
view unknown No
Returns : boolean
import { UIElement } from '../basecomponentmodel/UIElement';
import { INotifyCollectionChanged } from '../baseframework/collections';

/**
 * View collection interface
 *
 * @export
 * @interface IViewsCollection
 * @extends {Iterable<any>}
 * @extends {INotifyCollectionChanged}
 * @wInterface Microsoft.Practices.Prism.Regions.IViewsCollection
 */
export interface IViewsCollection
  extends Iterable<any>,
    INotifyCollectionChanged {
  /**
   * Checks if the collection contains a view
   *
   * @param {unknown} view
   * @returns {boolean}
   * @memberof IViewsCollection
   */
  Contains(view: unknown): boolean;
}

result-matching ""

    No results matching ""