IMetamodels.AddProperty Method
Namespace: NextDesign.Core
Description
Adds a new property to the specified class.
Arguments
Name | Type | Description |
---|---|---|
owner | IClass | Class |
name | string | Property name |
type | string | Property type name - "Object": Object type - "String": String type - "Integer": Integer type - "Double": Floating point type - "Boolean": Boolean type - "RichText": Rich text type If a type name other than the above is specified, the matching type will be identified as a class name or enumeration name. |
multiplicity | string | Multiplicity - "ZeroOne": 0 or 1 - "One": 1 - "ZeroToMany": 0 or more - "OneToMany": 1 or more |
Return value
- void
Exceptions
Name | Exception class | Description |
---|---|---|
Type not found | ExtensionTypeNotFoundException | If the class or enumeration type specified in the property type name cannot be found |
Profile editing not possible | ExtensionEditProfileException | If the profile editing operation fails |