addProperty

Define a custom property for a stereotype

Description

property = addProperty(stereotype,name) returns a new property definition with name that is contained in stereotype.

example

property = addProperty(stereotype,name,Name,Value)returns a property definition that is configured with specified property values.

Examples

collapse all

Add a component stereotype and add a VoltageRating property with value 5.

profile = systemcomposer.profile.Profile.createProfile('myProfile')
stype = addStereotype(profile,'electricalComponent','AppliesTo','Component')
property = addProperty(stype,'VoltageRating','DefaultValue','5');

Input Arguments

collapse all

Stereotype definition, specified as an object.

Name of the property must be unique within the stereotype.

Name-Value Pair Arguments

Specify optional comma-separated pairs of Name,Value arguments. Name is the argument name and Value is the corresponding value. Name must appear inside quotes. You can specify several name and value pair arguments in any order as Name1,Value1,...,NameN,ValueN.

Example: 'Type', 'double'

Type of this property. One of valid data types or the name of a MATLAB class that defines an enumeration. For more information, see Use Enumerated Data in Simulink Models (Simulink).

Example: addProperty(stype,'Color','Type','BasicColors')

Data Types: char

Array of dimensions describing the matrix shape of the value of this property. Empty implies no restriction.

Data Types: double

Optional minimum value of this property. To set both 'Min' and 'Max' together, use the setMinAndMax method.

Example: setMinAndMax(property, min, max)

Data Types: double

Optional maximum value of this property. To set both 'Min' and 'Max' together, use the setMinAndMax method.

Example: setMinAndMax(property, min, max)

Data Types: double

Units of the property value, specified as a string. If specified, all values of this property on model elements are checked for consistency with these units according to Simulink unit checking rules. For more information, see Unit Consistency Checking and Propagation (Simulink).

Data Types: char

Default value of this property, specified as a string expression or a cell array of string value and string unit.

Data Types: double

Output Arguments

collapse all

Property object.

Introduced in R2019a