v1.0
Creates local copies of shared properties.
oReturn = SIMakeLocal( [InputObjs], [PropagationType] ); |
Returns the local properties.
| Parameter | Type | Description |
|---|---|---|
| InputObjs | String | List of properties to make
local.
Default Value: Currently selected properties |
| PropagationType | siPropagationType | Propagation type for property
Default Value: siDefaultPropagation |
dim list, prop, local
set list = GetValue("SelectionList")
for each prop in list
if ( prop.IsA(siSharedPSet) ) then
set local = SIMakeLocal( prop, siBranchPropagation )
end if
next
|