IFluidMountableViewClass Interface
IFluidMountableViewClass defines the statics on our class implementing IFluidMountableView.
Signature
export interface IFluidMountableViewClass
Construct Signatures
ConstructSignature | Return Type | Description |
---|---|---|
new (view: FluidObject): IFluidMountableView | IFluidMountableView |
Methods
Method | Return Type | Description |
---|---|---|
canMount(view) | boolean | Test whether the given view can be successfully mounted by a MountableView. |
Construct Signature Details
new (view: FluidObject): IFluidMountableView
Signature
new (view: FluidObject): IFluidMountableView;
Parameters
Parameter | Type | Description |
---|---|---|
view | FluidObject | The view to make mountable |
Returns
Return type: IFluidMountableView
Method Details
canMount
Test whether the given view can be successfully mounted by a MountableView.
Signature
canMount(view: FluidObject): boolean;
Parameters
Parameter | Type | Description |
---|---|---|
view | FluidObject | the view to test if it can be mounted. |
Returns
Return type: boolean