「Layerstate-getnames」の版間の差分
(ページの作成: ; 構文 : (layerstate-getnames [''includehidden''] [''includexref'']) ; 機能 : 画層状態の名前のリストを返す。 ; 引数 :* includehidden : includehidden が T…) |
編集の要約なし |
||
1行目: | 1行目: | ||
{{AutoLISP}} | |||
; 構文 | ; 構文 | ||
: (layerstate-getnames [''includehidden''] [''includexref'']) | : (layerstate-getnames [''includehidden''] [''includexref'']) | ||
18行目: | 19行目: | ||
'''("First Floor" "Second Floor" "Foundation")''' | '''("First Floor" "Second Floor" "Foundation")''' | ||
----- | |||
関連記事 | |||
* [[画層状態関数]] | |||
[[Category:AutoLISP]] | [[Category:AutoLISP]] |
2021年8月9日 (月) 07:27時点における最新版
- 構文
- (layerstate-getnames [includehidden] [includexref])
- 機能
- 画層状態の名前のリストを返す。
- 引数
-
- includehidden : includehidden が T の場合、非表示画層状態の名前がリストに含まれる。省略するか nil の場合、非表示画層状態は除外される。
- includexref : includexref が nil の場合、外部参照の画層状態の名前はリストから除外される。省略するか T の場合、外部参照の画層状態は含まれる。
- 戻り値
- 画層状態のリストが返される。
- サンプル
(layerstate-getnames) ("First Floor" "Second Floor" "Foundation")
関連記事