Civil:style-get-labelstyle-params

提供:GizmoLabs - だいたい CAD LISP なサイト
構文
(civil:style-get-labelstyle-params nameOrEname styleCategory )


機能
styleCategory カテゴリ内の 名前または Ename で指定された Civil ラベルスタイルオブジェクトのすべてのスタイル パラメータの DottedPair リストを返す。


引数
  • nameOrEname: ラベルスタイルオブジェクト名の文字列または ename。
  • styleCategory: ECivil3dLabelStyleCategory の値の組み合わせ


戻り値
(キー . 値)のドットペアリスト、または nil


メモ


サンプル
(vl-load-civil)
T

(setq labelStyleNames (civil:style-get-labelstyles bcCivilPointLabel T))
("Default" "pointstyle1" "pointstyle2")

(setq style (civil:style-get-labelstyle "Default" bcCivilPointLabel))
<Entity name: 320044d0>

(setq params (civil:style-get-labelstyle-params "Default" bcCivilPointLabel))
(("TextStyle" . "Standard") ("Visible" . "On") ("Layer" . "") ("OrientationReference" . 0) ("ForcedInsertion" . 0) ("ReadabilityBias" . 1.91986217719376) ("PlanReadable" . "On") ("FlipAnchorsWithText" . "Off") ("forceInsideCurve" . "Off"))

関連事項