projects/wms-framework/src/lib/regionsframework/IViewsCollection.ts
View collection interface
Methods |
Contains | ||||||
Contains(view: unknown)
|
||||||
Checks if the collection contains a view
Parameters :
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;
}