MakeLocal

Introduced

v1.0

Categories

property

Description

Creates local copies of shared properties.

Scripting Syntax

oReturn = MakeLocal( [InputObjs], [PropagationType] );

Return Value

Returns the local properties.

Parameters

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

Examples

VBScript Example

dim list, local
set list = GetValue("SelectionList")
set local = MakeLocal( list, siBranchPropagation )
if TypeName(local) <> "Nothing" then
        LogMessage TypeName(local) & "; " & local
end if

See Also

AddProp SIMakeLocal SIAddPropEx SIAddProp