v1.0
Creates local copies of shared properties.
oReturn = MakeLocal( [InputObjs], [PropagationType] ); |
Returns the local properties.
| Parameter | Type | Description |
|---|---|---|
| InputObjs | String | List of properties to make
local. Properties that are not shared are ignored.
Default Value: Currently selected properties |
| PropagationType | siPropagationType | Propagation type for property
Default Value: siDefaultPropagation |
dim list, local
set list = GetValue("SelectionList")
set local = MakeLocal( list, siBranchPropagation )
if TypeName(local) <> "Nothing" then
LogMessage TypeName(local) & "; " & local
end if
|