IsSmartUpdatable

From scripting
Revision as of 07:03, 22 April 2017 by Nickpisca (talk | contribs) (Created page with " Function IsSmartUpdatable(InputObj As Variant) As Boolean On Error GoTo blast Set CurPart = GetContainingPart(InputObj) CurPart.UpdateObject InputObj IsSmartUpdatable...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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