File

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

Description

IRegionBehavior interface.

Index

Properties
Methods

Methods

Attach
Attach()

Attaches the behavior to the specified region.

Returns : void

Properties

Region
Region: IRegion
Type : IRegion

The region that this behavior is extending.

import { DependencyObject } from '../basecomponentmodel/DependencyObject';
import { IRegion } from './IRegion';

/**
 * IRegionBehavior interface.
 *
 * @export
 * @interface IRegionBehavior
 * @wInterface Microsoft.Practices.Prism.Regions.IRegionBehavior
 */
export interface IRegionBehavior {
  /**
   * The region that this behavior is extending.
   */
  Region: IRegion;

  /**
   * Attaches the behavior to the specified region.
   */
  Attach(): void;
}

/**
 * IHostAwareRegionBehavior interface.
 *
 * @export
 * @interface IHostAwareRegionBehavior
 * @extends {IRegionBehavior}
 * @wInterface Microsoft.Practices.Prism.Regions.Behaviors.IHostAwareRegionBehavior
 */
export interface IHostAwareRegionBehavior extends IRegionBehavior {
  HostControl: DependencyObject;
}

result-matching ""

    No results matching ""