Synchronization Naming Action Rule

This action rule enables you to define the name for a structure design panel synchronized with a functional design panel.

This page discusses:

General Information

This action rule is invoked:

  • When the Synchronization Manager command is executed.
  • When a panel is modified in Structure Functional Design and synchronized in Structure Design.

This action rule is used to customize the name of the product created as a synchronization result of a panel.

Arguments

Name Type
Input Feature
DesignUnitRef VPMReference
SyncName String

Sample

The following sample explains the action rule for naming a synchronized panel.

let SFDPanel(SldPanel)
let DesignUnit(VPMReference)

let Dash(String)

set SFDPanel = Input
set DesignUnit = DesignUnitRef

set Dash = "--"

/*
Here is default combination of Physical Panel Name.
Physical Panel Name = SFD Panel Name + "--" + Design Uint Title(V_Name)

You can create Physical Panel Name whatever you wants with combination of object names, material names, offset, ect.
*/
SyncName = SFDPanel.Name + Dash + DesignUnit.V_Name