projects/wms-framework/src/lib/basecomponentmodel/DescriptionMetadata.ts
Description metadata class
Properties |
|
Methods |
|
Public description |
Type : string
|
Default value : null
|
The description property |
Public OnAppliedTo | ||||||
OnAppliedTo(target: any)
|
||||||
Inherited from
MetadataAttribute
|
||||||
Defined in
MetadataAttribute:33
|
||||||
On applied to a soruce element
Parameters :
Returns :
void
|
import { MetadataAttribute } from '../baseframework/MetadataAttribute';
/**
* Description metadata class
*
* @export
* @class DescriptionMetadata
* @extends {MetadataAttribute}
* @wType System.ComponentModel.DescriptionAttribute
*/
export class DescriptionMetadata extends MetadataAttribute {
/**
* The description property
*
* @type {string}
* @memberof DescriptionMetadata
* @wProperty Description
*/
public description: string = null;
}