Difference between revisions of "IsSmartUpdatable"

From scripting
Jump to: navigation, search
(Created page with " Function IsSmartUpdatable(InputObj As Variant) As Boolean On Error GoTo blast Set CurPart = GetContainingPart(InputObj) CurPart.UpdateObject InputObj IsSmartUpdatable...")
 
(No difference)

Latest revision as of 07:03, 22 April 2017

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