IAcSmEnumProperty


The Enumerator for IAcSmCustomPropertyValue objects.

available methods :

(setq cad (vlax-get-acad-object))
(setq ssmgr (vla-GetInterfaceObject cad "BricscadSm.AcSmSheetSetMgr"))
(setq smdb (vlax-invoke-method ssmgr 'OpenDatabase dstfile))
(setq sheetset (vlax-invoke-method smdb 'GetSheetSet))
(setq custProps (vlax-invoke-method sheetset "GetCustomPropertyBag"))
(setq iter (vlax-invoke-method custProps 'GetPropertyEnumerator))

Next

iterates to the next and returns the actual element (as name and value)

(setq res (vlax-invoke-method iter 'Next 'propname 'propobj))

HRESULT Next ([out] BSTR* propname, [out] IAcSmCustomPropertyValue** ppValue)

Reset

resets the enumerator to the first element

(vlax-invoke-method iter 'Reset)

HRESULT Reset ()



©  Bricsys NV. All rights reserved.