Hilfe-Center von Creo™ Schematics 4.0 > Creo Schematics mit Java APIs anpassen > Beispiel: Klasse beim Platzieren eines Artefakts als Variante aufrufen
  
Beispiel: Klasse beim Platzieren eines Artefakts als Variante aufrufen
public class UpdateProperties extends Object implements rsdesigner.uiextension.UpdateProperties
{
public UpdateProperties() {}
public boolean update(Properties props)
{
// Manipulate the Properties and their values from the
// Properties instance
System.out.println("[UpdateProperties]: updating");
// Return true if we want Creo Schematics to update the Properties
return true;
}
}