Provides necessary functionality to retrieve design time metadata properties. Takes into consideration control metadata properties, design time metadata properties, annotations, label and name.
Node | Description |
---|---|
sap.ui.rta.service.Property.PropertyObject |
Object containing the detailed information about design time properties of the passed control. |
Method | Description |
---|---|
sap.ui.rta.service.Property.get |
Returns an object containing design time properties for the passed control's ID. Throws an error if the control ID parameter is not a valid control with a stable ID. Example: { "properties": { <...>, "virtualProperty1": { <...> }, "metadataProperty1": { <...> } }, "annotations": { "annotation1": { <...> }, <...> }, "links": { <...> }, <...> } |
Returns an object containing design time properties for the passed control's ID. Throws an error if the control ID parameter is not a valid control with a stable ID.
Example:
{ "properties": { <...>, "virtualProperty1": { <...> }, "metadataProperty1": { <...> } }, "annotations": { "annotation1": { <...> }, <...> }, "links": { <...> }, <...> }
Param | Type | DefaultValue | Description |
---|---|---|---|
sControlId | string |
ID of the control to start with |