Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
macro:setting-change [2021/03/26 02:42] – created kabunekomacro:setting-change [2021/03/26 02:59] (current) – [段組み表示切替] kabuneko
Line 26: Line 26:
 </code> </code>
  
 +==== 段組み表示切替 ====
 +
 +  * 設定に複数の選択肢がある場合のマクロの例。以下は段組み表示の段数変更マクロ。
 +
 +<code vbscript>
 +sub dangumi
 +    if ActivePane is nothing then exit sub
 +    dim columns, max
 +    columns = ActivePane.IDDP_MultipleColumn
 +    max = 3 'ここまで増えたら次は1にもどる、という数を設定。最大5。
 +    columns = columns + 1
 +    if columns > max then columns = 1
 +    ActivePane.IDDP_MultipleColumn = columns
 +end sub
 +</code>
 ==== メニュー設定に直接記述 ==== ==== メニュー設定に直接記述 ====
  
  • macro/setting-change.1616694124.txt.gz
  • Last modified: 2021/03/26 02:42