「IAcSmCustomPropertyBag」の版間の差分

提供:GizmoLabs - だいたい CAD LISP なサイト
(ページの作成:「{{BCAD_LISP}} IAcSmDatabase オブジェクトのカスタムプロパティ値へのインターフェイス。 使用可能なメソッド (setq cad (vlax-get-acad-…」)
 
編集の要約なし
 
35行目: 35行目:
|-
|-
|}
|}
-----
関連記事
* [[シートセット関数-BricsCAD]]

2022年8月8日 (月) 08:09時点における最新版

IAcSmDatabase オブジェクトのカスタムプロパティ値へのインターフェイス。


使用可能なメソッド

(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"))


項目 内容
GetProperty 提供されたプロパティ名に関連付けられたカスタムプロパティ値を返す。
(setq propval (vlax-invoke-method custProps 'GetProperty "Checked By"))

HRESULT GetProperty ([in] BSTR name, [out, retval] IAcSmCustomPropertyValue** value)
SetProperty 提供されたプロパティ名に関連するカスタムプロパティ値を代入する。
(vlax-invoke-method custProps 'SetProperty "Checked By" propval)

HRESULT SetProperty ([in] BSTR name, [in] IAcSmCustomPropertyValue* value)
GetPropertyEnumerator 含まれるすべてのプロパティの列挙子を返す。
(setq iter (vlax-invoke-method custProps 'GetPropertyEnumerator))

HRESULT GetPropertyEnumerator ([out, retval] IAcSmEnumProperty** enumerator)

関連記事