Difference between revisions of "HybridShapeExists"

From scripting
Jump to: navigation, search
(Created page with " Function HybridShapeExists(InputStr As String) As Boolean On Error GoTo blast Set HHH = CurSet.HybridShapes.Item(InputStr) HybridShapeExists = True Exit Function blast:...")
 
(No difference)

Latest revision as of 06:07, 22 April 2017

Function HybridShapeExists(InputStr As String) As Boolean
On Error GoTo blast
Set HHH = CurSet.HybridShapes.Item(InputStr)
HybridShapeExists = True
Exit Function
blast:
HybridShapeExists = False
End Function