「Vle-edittextinplace」の版間の差分
(ページの作成:「{{BCAD_LISP}} ; 構文 : (vle-edittextinplace ''ename'' ) ; 機能 : テキスト値を含むいくつかのエンティティタイプに対して、インプレー…」) |
編集の要約なし |
||
(同じ利用者による、間の1版が非表示) | |||
30行目: | 30行目: | ||
関連事項 | 関連事項 | ||
* [[VLE-関数]] | * [[VLE-関数]] | ||
* [[vle-edittextinplace]] | |||
* [[vle-string-replace]] | * [[vle-string-replace]] | ||
* [[vl-string-subst]] | * [[vl-string-subst]] | ||
[[Category:AutoLISP]] | [[Category:AutoLISP]] | ||
[[Category:BricsCADのLISP]] |
2023年3月29日 (水) 08:34時点における最新版
- 構文
- (vle-edittextinplace ename )
- 機能
- テキスト値を含むいくつかのエンティティタイプに対して、インプレース編集を開始する。
- 編集が終了すると、(vle-edittextinplace) は、'モーダル' 方式で動作する。
- 引数
-
- ename: 文字のエンティティ名(対応エンティティ :Text, MText, Dimension, MLeader, Attribute, AttributeDefinition)
- 戻り値
- 編集された文字列、編集に失敗 or キャンセルされた場合は nil
- サンプル
(setq mspace (vla-get-modelspace (vla-get-activedocument (vlax-get-acad-object)))) (vla-addtext mspace "XXX" (vlax-3d-point 0 0) 2.5)) (vle-edittextinplace (entlast)) "編集された文字列"
関連事項