updateItem

an alias for refresh, repaints the property view

void updateItem();

Example

var item = property.getItem("width");
item.value = "new one";
property.updateItem("width"); //same  as property.refresh();

Details

updateItem was created for API compatibility with data components.

Back to top