Gz:lspinputbox2

提供:GizmoLabs - だいたい CAD LISP なサイト
2020年8月29日 (土) 16:29時点におけるGizmon (トーク | 投稿記録)による版 (ページの作成:「{{GZLIB}} ; 構文 : (Gz:inputbox2 ''main'' ''msg1'' ''def'') ; 機能 : インプットダイアログを表示する。 ; 引数 :* main … ダイアログのタ…」)
(差分) ← 古い版 | 最新版 (差分) | 新しい版 → (差分)
構文
(Gz:inputbox2 main msg1 def)


機能
インプットダイアログを表示する。


引数
  • main … ダイアログのタイトル
  • msg1 … ダイアログボックスに表示するメッセージの文字列または文字列のリスト。
  • def … 入力欄の初期値


戻り値
文字列、キャンセルだったら nil


サンプル
(setq result (Gz:inputbox2 "LspRetryCancel メッセージボックス" "メッセージ1" "初期値っす"))
(setq result (Gz:inputbox2 "LspRetryCancel メッセージボックス" '("メッセージ1" "メッセージ2" "メッセージ3")  "初期値っす"))


(defun gz_msgbox_test (/ result msg1 lst1)
  ; gz_msgbox 関連関数のテスト
  (setq msg1 '("メッセージ1" "メッセージ2" "メッセージ3")
        lst1 '("aaa" "AA" "あああ" "ぁぁぁ" "1234567890"))

  (setq result (Gz:OkCancel "OK-Cancel メッセージボックス" msg1))
  (alert (if (= T result) "OK" "キャンセル"))
  (setq result (Gz:YesNo "Yes-No メッセージボックス" msg1 ))
  (alert (if (= T result) "Yes" "No"))
  (setq result (Gz:okonly "OK Only メッセージボックス" msg1 ))
  (alert (if (= T result) "OK" "エラー"))
  (setq result (Gz:RetryCancel "Retry-Cancel メッセージボックス" msg1 ))
  (alert (if (= T result) "リトライ" "キャンセル"))
  (setq result (Gz:GetPass  "GetPass メッセージボックス" msg1 ))
  (alert (strcat "パスワードは" result))
  (setq result (Gz:inputbox "インプットボックス" msg1 ))
  (alert (if (= nil result) "キャンセル" result))
  (setq result (Gz:inputbox2 "インプットボックス" msg1 "あれ"))
  (alert (if (= nil result) "キャンセル" result))
  (setq result (Gz:ComboBox "コンボボックス" msg1 lst1))
  (alert (if (= nil result) ("キャンセル") result))
  (setq result (Gz:ListBox "リストボックス" msg1 lst1))
  (alert (if (= nil result) ("キャンセル") result))
  (setq result (Gz:ListBoxMulti "複数選択リストボックス" msg1 lst1))
  (alert (if (= nil result) ("キャンセル") result))
  (princ)
)



関連事項