IsSmartUpdatable

From scripting
Jump to: navigation, search
Function IsSmartUpdatable(InputObj As Variant) As Boolean
On Error GoTo blast
Set CurPart = GetContainingPart(InputObj)
CurPart.UpdateObject InputObj
IsSmartUpdatable = True
Exit Function
blast:
IsSmartUpdatable = False
End Function