projects/wms-framework/src/lib/basecomponentmodel/Bindings/RelativeSourceInfo.ts
Relative source information for binding
Properties |
AncestorLevel |
Type : number
|
Default value : 0
|
Ancestor level |
AncestorType |
Type : any
|
Default value : null
|
Ancestor type identification |
CustomParent |
Type : any
|
Custom object to use for ancestor search The value of this property is used for the |
Mode |
Type : any
|
Default value : null
|
Relative source mode |
export class RelativeSourceInfo {
/**
* Relative source mode
*
* @type {*}
* @memberof RelativeSourceInfo
*/
Mode: any = null;
/**
* Ancestor level
*
* @memberof RelativeSourceInfo
*/
AncestorLevel = 0;
/**
* Ancestor type identification
*
* @type {*}
* @memberof RelativeSourceInfo
*/
AncestorType: any = null;
/**
* Custom object to use for ancestor search
*
* The value of this property is used for the `FindAncestor` starting point
*
* @type {*}
* @memberof RelativeSourceInfo
*/
CustomParent: any;
}