| Home | What's New |
生産性向上 基本テクニック |
トラブル回避 テクニック |
生産性向上 リンク |
personal.xls 強化講座 |
生産性向上 ツール |
Site Map |
Coffee Break |
Guest Book |
地球風 画像館 |
Q&A
Salon EXCELの質問はこちらへ |
|
11/20/2004 -
|
|
|
VBA資料編1 組み込みダイアログボックス名称と呼出し番号の一覧
|
|
| personal.xls に限らず、EXCEL VBAでマクロプログラムを記述する際に便利な機能として、組み込みダイアログボックスというものがあります。組み込みダイアログボックスについては、モーグ スキルアップ講座 ExcelVBA上級テクニック 第6回「ダイアログボックスを使った対話型マクロの作成」に詳しく解説されている(特に2/5ページ以降)ので、そちらを参照してください。 | |
| 組み込みダイアログボックスは、 Application.Dialogs(ダイアログボックス定数).Show という呼び出し方をします。 上記リンクのモーグのページ中にも記載されているように、ヘルプにダイアログボックス定数と引数の一覧は載っています(下図)。しかし、このダイアログボックス定数を見ただけでは、どんな機能を持った組み込みダイアログなのかが分かりづらいため、求めるダイアログボックスを探し当てるのに非常に手間がかかります(というか、実際に私が探すのに苦労したのでこの一覧表を作っておこうと考えたのですが)。 そこで、一つずつダイアログを表示させてみながら、ダイアログの日本語名称を洗い出して一覧表にしてみました(下表)。 表の順番は、ヘルプの一覧表の順番(アルファベット順)ではなく、ダイアログボックス定数順としました。例えば、 Application.Dialogs(xlDialogOpen).Show と書くのと、 Application.Dialogs(1).Show と書くのは同じです。つまり xlDialogOpen = 1 なのですが、この数値順にしてあります。 定数が若い(数値が小さい)ダイアログは使用頻度が高い傾向にあると思われるので、定数順のほうが目的のダイアログを探しやすいと考えたためです。 ダイアログ名称を空欄にしているところがありますが、その部分は単純に Application.Dialogs(ダイアログボックス定数).Show としただけではダイアログを表示させられないケースです。ダイアログの対象がグラフであるなど、特定の状況でしかダイアログを表示できないケースがあります。今後、判明したものは随時埋めていきます。 なお、この表はExcel2002 SP3とExcel2003で調査した結果ですので、他のバージョンでは異なる可能性があります。 |
|
![]() |
|
なお、もう少し手間をかけて、一つ一つのダイアログのキャプチャー画面を載せようとも思ったんですが、このページを作成するにあたりいろいろとネットを検索したところ、 組み込み Dialog Box View(XL2002) というフリーソフトをVectorで発見しました。このマクロを使うと(ダイアログボックス定数の入っているセルをクリックするだけで)組み込みダイアログが表示されるので、目的のダイアログを手軽に探すことが可能です。(ということで、このページにダイアログのキャプチャー画面を載せるのはやめにしました) 組み込みダイアログボックス自体は通常のEXCEL操作で表示されるものなので、例えばメニューから「ウィンドウ(W)」「整列(A)」と操作して表示される「ウィンドウの整列」というダイアログをマクロから呼び出したい場合には、下の表から「ウィンドウの整列」という文字を検索し、見つかったダイアログボックス定数である xlDialogArrangeAll を組み込み Dialog Box View というソフトで実際にダイアログを表示させてみて目的のものかどうか確認する、という使い方がスマートではないでしょうか。 |
|
|
呼出し
番号 |
ダイアログ名称
|
ダイアログ ボックス定数
|
引数リスト
|
|
1
|
ファイルを開く | xlDialogOpen | file_text、update_links、read_only、format、prot_pwd、write_res_pwd、ignore_rorec、file_origin、custom_delimit、add_logical、editable、file_access、notify_logical、converter |
|
2
|
xlDialogOpenLinks | document_text1、document_text2、...、read_only、type_of_link | |
|
5
|
名前をつけて保存 | xlDialogSaveAs | document_text、type_num、prot_pwd、backup、write_res_pwd、read_only_rec |
|
6
|
ファイルの削除 | xlDialogFileDelete | file_text |
|
7
|
ページ設定(ページ) | xlDialogPageSetup | head、foot、left、right、top、bot、hdng、grid、h_cntr、v_cntr、orient、paper_size、scale、pg_num、pg_order、bw_cells、quality、head_margin、foot_margin、notes、draft |
|
7
|
ページ設定(ページ) | xlDialogPageSetup | head、foot、left、right、top、bot、size、h_cntr、v_cntr、orient、paper_size、scale、pg_num、bw_chart、quality、head_margin、foot_margin、draft |
|
7
|
ページ設定(ページ) | xlDialogPageSetup | head、foot、left、right、top、bot、orient、paper_size、scale、quality、head_margin、foot_margin、pg_num |
|
8
|
印刷 | xlDialogPrint | range_num、from、to、copies、draft、preview、print_what、color、feed、quality、y_resolution、selection、printer_text、print_to_file、collate |
|
9
|
プリンタの設定 | xlDialogPrinterSetup | printer_text |
|
12
|
ウィンドウの整列 | xlDialogArrangeAll | arrange_num、active_doc、sync_horiz、sync_vert |
|
13
|
xlDialogWindowSize | width、height、window_text | |
|
14
|
xlDialogWindowMove | x_pos、y_pos、window_text | |
|
17
|
マクロ | xlDialogRun | reference、step |
|
23
|
印刷タイトルの設定 | xlDialogSetPrintTitles | titles_for_cols_ref、titles_for_rows_ref |
|
26
|
フォントの設定 | xlDialogFont | name_text、size_num |
|
27
|
画面設定 | xlDialogDisplay | formulas、gridlines、headings、zeros、color_num、reserved、outline、page_breaks、object_num |
|
27
|
画面設定 | xlDialogDisplay | cell、formula、value、format、protection、names、precedents、dependents、note |
|
28
|
シートの保護 | xlDialogProtectDocument | contents、windows、password、objects、scenarios |
|
32
|
計算方法の設定 | xlDialogCalculation | type_num、iter、max_num、max_change、update、precision、date_1904、calc_save、save_values、alt_exp、alt_form |
|
35
|
xlDialogExtract | unique | |
|
36
|
xlDialogDataDelete | ||
|
39
|
並べ替え | xlDialogSort | orientation、key1、order1、key2、order2、key3、order3、header、custom、case |
|
39
|
並べ替え | xlDialogSort | orientation、key1、order1、type、custom |
|
40
|
連続データ | xlDialogDataSeries | rowcol、type_num、date_num、step_value、stop_value、trend |
|
41
|
テーブル | xlDialogTable | row_ref、column_ref |
|
42
|
セルの書式設定(表示形式) | xlDialogFormatNumber | format_text |
|
43
|
セルの書式設定(配置) | xlDialogAlignment | horiz_align、wrap、vert_align、orientation、add_indent |
|
44
|
フォントの設定 | xlDialogStyle | bold、italic |
|
45
|
セルの書式設定(罫線) | xlDialogBorder | outline、left、right、top、bottom、shade、outline_color、left_color、right_color、top_color、bottom_color |
|
46
|
セルの書式設定(保護) | xlDialogCellProtection | locked、hidden |
|
47
|
列幅 | xlDialogColumnWidth | width_num、reference、standard、type_num、standard_num |
|
52
|
消去 | xlDialogClear | type_num |
|
53
|
形式を選択して貼り付け | xlDialogPasteSpecial | paste_num、operation_num、skip_blanks、transpose |
|
53
|
形式を選択して貼り付け | xlDialogPasteSpecial | rowcol、titles、categories、replace、series |
|
53
|
形式を選択して貼り付け | xlDialogPasteSpecial | paste_num |
|
53
|
形式を選択して貼り付け | xlDialogPasteSpecial | format_text、pastelink_logical、display_icon_logical、icon_file、icon_number、icon_label |
|
54
|
削除 | xlDialogEditDelete | shift_num |
|
55
|
セルの挿入 | xlDialogInsert | shift_num |
|
58
|
名前の貼り付け | xlDialogPasteNames | |
|
61
|
名前の定義 | xlDialogDefineName | name_text、refers_to、macro_type、shortcut_text、hidden、category、local |
|
62
|
名前の作成 | xlDialogCreateNames | top、left、bottom、right |
|
63
|
ジャンプ | xlDialogFormulaGoto | reference、corner |
|
64
|
検索 | xlDialogFormulaFind | text、in_num、at_num、by_num、dir_num、match_case、match_byte |
|
67
|
(グラフ)オートフォーマット(面) | xlDialogGalleryArea | type_num、delete_overlay |
|
68
|
(グラフ)オートフォーマット(横棒) | xlDialogGalleryBar | type_num、delete_overlay |
|
69
|
(グラフ)オートフォーマット(縦棒) | xlDialogGalleryColumn | type_num、delete_overlay |
|
70
|
(グラフ)オートフォーマット(折れ線) | xlDialogGalleryLine | type_num、delete_overlay |
|
71
|
(グラフ)オートフォーマット(円) | xlDialogGalleryPie | type_num、delete_overlay |
|
72
|
(グラフ)オートフォーマット(散布図) | xlDialogGalleryScatter | type_num、delete_overlay |
|
73
|
(グラフ)オートフォーマット(複合) | xlDialogCombination | type_num |
|
76
|
グラフオプション(目盛線) | xlDialogGridlines | x_major、x_minor、y_major、y_minor、z_major、z_minor、2D_effect |
|
78
|
グラフオプション(軸) | xlDialogAxes | x_primary、y_primary、x_secondary、y_secondary |
|
78
|
グラフオプション(軸) | xlDialogAxes | x_primary、y_primary、z_primary |
|
80
|
(グラフ)文字の追加 | xlDialogAttachText | attach_to_num、series_num、point_num |
|
84
|
セルの書式設定(パターン) | xlDialogPatterns | apattern、afore、aback、newui |
|
84
|
セルの書式設定(パターン) | xlDialogPatterns | lauto、lstyle、lcolor、lwt、hwidth、hlength、htype |
|
84
|
セルの書式設定(パターン) | xlDialogPatterns | bauto、bstyle、bcolor、bwt、shadow、aauto、apattern、afore、aback、rounded、newui |
|
84
|
セルの書式設定(パターン) | xlDialogPatterns | bauto、bstyle、bcolor、bwt、shadow、aauto、apattern、afore、aback、invert、apply、newfill |
|
84
|
セルの書式設定(パターン) | xlDialogPatterns | lauto、lstyle、lcolor、lwt、tmajor、tminor、tlabel |
|
84
|
セルの書式設定(パターン) | xlDialogPatterns | lauto、lstyle、lcolor、lwt、apply、smooth |
|
84
|
セルの書式設定(パターン) | xlDialogPatterns | lauto、lstyle、lcolor、lwt、mauto、mstyle、mfore、mback、apply、smooth |
|
84
|
セルの書式設定(パターン) | xlDialogPatterns | type、picture_units、apply |
|
85
|
メイングラフ/重ね合わせグラフ | xlDialogMainChart | type_num、stack、100、vary、overlap、drop、hilo、overlap%、cluster、angle |
|
86
|
xlDialogOverlay | type_num、stack、100、vary、overlap、drop、hilo、overlap%、cluster、angle、series_num、auto | |
|
87
|
(グラフ)軸の書式設定 | xlDialogScale | cross、cat_labels、cat_marks、between、max、reverse |
|
87
|
(グラフ)軸の書式設定 | xlDialogScale | min_num、max_num、major、minor、cross、logarithmic、reverse、max |
|
87
|
(グラフ)軸の書式設定 | xlDialogScale | cat_labels、cat_marks、reverse、between |
|
87
|
(グラフ)軸の書式設定 | xlDialogScale | series_labels、series_marks、reverse |
|
87
|
(グラフ)軸の書式設定 | xlDialogScale | min_num、max_num、major、minor、cross、logarithmic、reverse、min |
|
88
|
xlDialogFormatLegend | position_num | |
|
89
|
xlDialogFormatText | x_align、y_align、orient_num、auto_text、auto_size、show_key、show_value、add_indent | |
|
91
|
区切り位置 | xlDialogParse | parse_text、destination_ref |
|
94
|
ウィンドウの再表示 | xlDialogUnhide | window_text |
|
95
|
作業状態設定 | xlDialogWorkspace | fixed、decimals、r1c1、scroll、status、formula、menu_key、remote、entermove、underlines、tools、notes、nav_keys、menu_key_action、drag_drop、show_info |
|
103
|
ウィンドウの選択 | xlDialogActivate | window_text、pane_num |
|
108
|
図のコピー | xlDialogCopyPicture | appearance_num、size_num、type_num |
|
110
|
名前の定義 | xlDialogDeleteName | name_text |
|
111
|
セルの書式設定(表示形式) | xlDialogDeleteFormat | format_text |
|
119
|
新しいブック | xlDialogNew | type_num、xy_series、add_logical |
|
127
|
行の高さ | xlDialogRowHeight | height_num、reference、standard_height、type_num |
|
128
|
xlDialogFormatMove | x_offset、y_offset、reference | |
|
128
|
xlDialogFormatMove | x_pos、y_pos | |
|
128
|
xlDialogFormatMove | explosion_num | |
|
129
|
xlDialogFormatSize | width、height | |
|
129
|
xlDialogFormatSize | x_off、y_off、reference | |
|
130
|
置換 | xlDialogFormulaReplace | find_text、replace_text、look_at、look_by、active_cell、match_case、match_byte |
|
132
|
選択オプション | xlDialogSelectSpecial | type_num、value_type、levels |
|
133
|
xlDialogApplyNames | name_array、ignore、use_rowcol、omit_col、omit_row、order_num、append_last | |
|
134
|
フォントの設定 | xlDialogReplaceFont | font_num、name_text、size_num、bold、italic、underline、strike、color、outline、shadow |
|
137
|
ウィンドウの分割(の移動) | xlDialogSplit | col_split、row_split |
|
142
|
設定 | xlDialogOutline | auto_styles、row_dir、col_dir、create_apply |
|
145
|
名前をつけて保存 | xlDialogSaveWorkbook | document_text、type_num、prot_pwd、backup、write_res_pwd、read_only_rec |
|
147
|
図のコピー | xlDialogCopyChart | size_num |
|
150
|
フォントの設定 | xlDialogFormatFont | color、backgd、apply、name_text、size_num、bold、italic、underline、strike、outline、shadow、object_id、start_num、char_num |
|
150
|
フォントの設定 | xlDialogFormatFont | name_text、size_num、bold、italic、underline、strike、color、outline、shadow |
|
150
|
フォントの設定 | xlDialogFormatFont | name_text、size_num、bold、italic、underline、strike、color、outline、shadow、object_id_text、start_num、char_num |
|
154
|
xlDialogNote | add_text、cell_ref、start_char、num_chars | |
|
159
|
xlDialogSetUpdateStatus | link_text、status、type_of_link | |
|
161
|
オプション(色) | xlDialogColorPalette | file_text |
|
166
|
xlDialogChangeLink | old_text、new_text、type_of_link | |
|
170
|
xlDialogAppMove | x_num、y_num | |
|
171
|
xlDialogAppSize | x_num、y_num | |
|
185
|
メイングラフ/重ね合わせグラフ | xlDialogMainChartType | type_num |
|
186
|
xlDialogOverlayChartType | type_num | |
|
188
|
xlDialogOpenMail | subject、comments | |
|
189
|
xlDialogSendMail | recipients、subject、return_receipt | |
|
190
|
フォントの設定 | xlDialogStandardFont | name_text、size_num、bold、italic、underline、strike、color、outline、shadow |
|
191
|
統合の設定 | xlDialogConsolidate | source_refs、function_num、top_row、left_col、create_links |
|
192
|
並べ替え | xlDialogSortSpecial | sort_by、method、key1、order1、key2、order2、key3、order3、header、order、case |
|
193
|
(グラフ)オートフォーマット(3-D 面) | xlDialogGallery3dArea | type_num |
|
194
|
(グラフ)オートフォーマット(3-D 縦棒) | xlDialogGallery3dColumn | type_num |
|
195
|
(グラフ)オートフォーマット(3-D 折れ線) | xlDialogGallery3dLine | type_num |
|
196
|
(グラフ)オートフォーマット(3-D 円) | xlDialogGallery3dPie | type_num |
|
197
|
xlDialogView3d | elevation、perspective、rotation、axes、height%、autoscale | |
|
198
|
ゴールシーク | xlDialogGoalSeek | target_cell、target_value、variable_cell |
|
199
|
グループ編集 | xlDialogWorkgroup | name_array |
|
200
|
作業グループへコピー | xlDialogFillGroup | type_num |
|
201
|
xlDialogUpdateLink | link_text、type_of_link | |
|
202
|
xlDialogPromote | rowcol | |
|
203
|
グループ化 | xlDialogDemote | row_col |
|
204
|
xlDialogShowDetail | rowcol、rowcol_num、expand、show_field | |
|
207
|
オートシェイプの書式設定(プロパティ) | xlDialogObjectProperties | placement_type、print_object |
|
208
|
xlDialogSaveNewObject | ||
|
212
|
スタイル | xlDialogApplyStyle | style_text |
|
213
|
マクロの登録 | xlDialogAssignToObject | macro_ref |
|
214
|
オートシェイプの書式設定(保護) | xlDialogObjectProtection | locked、lock_text |
|
217
|
xlDialogCreatePublisher | file_text、appearance、size、formats | |
|
218
|
xlDialogSubscribeTo | file_text、format_num | |
|
220
|
ユーザー設定(オプション) | xlDialogShowToolbar | bar_id、visible、dock、x_pos、y_pos、width、protect、tool_tips、large_buttons、color_buttons |
|
222
|
印刷プレビュー | xlDialogPrintPreview | |
|
223
|
xlDialogEditColor | color_num、red_value、green_value、blue_value | |
|
225
|
メイングラフ/重ね合わせグラフ | xlDialogFormatMain | type_num、view、overlap、gap_width、vary、drop、hilo、angle、gap_depth、chart_depth、up_down、series_line、labels、doughnut_size |
|
226
|
xlDialogFormatOverlay | type_num、view、overlap、gap_width、vary、drop、hilo、angle、series_dist、series_num、up_down、series_line、labels、doughnut_size | |
|
228
|
(グラフ)系列の編集 | xlDialogEditSeries | series_num、name_ref、x_ref、y_ref、z_ref、plot_order |
|
229
|
スタイル | xlDialogDefineStyle | style_text、number、font、alignment、border、pattern、protection |
|
229
|
スタイル | xlDialogDefineStyle | style_text、attribute_num、additional_def_args、... |
|
249
|
(グラフ)オートフォーマット(レーダー) | xlDialogGalleryRadar | type_num、delete_overlay |
|
251
|
xlDialogEditionOptions | edition_type、edition_name、reference、option、appearance、size、formats | |
|
256
|
ズーム | xlDialogZoom | magnification |
|
259
|
オブジェクトの挿入 | xlDialogInsertObject | object_class、file_name、link_logical、display_icon_logical、icon_file、icon_number、icon_label |
|
261
|
xlDialogSize | width、height、window_text | |
|
262
|
xlDialogMove | x_pos、y_pos、window_text | |
|
269
|
オートフォーマット | xlDialogFormatAuto | format_num、number、font、alignment、border、pattern、width |
|
272
|
(グラフ)オートフォーマット(3-D 横棒) | xlDialogGallery3dBar | type_num |
|
273
|
(グラフ)オートフォーマット(3-D 等高線) | xlDialogGallery3dSurface | type_num |
|
276
|
ユーザー設定(オプション) | xlDialogCustomizeToolbar | category |
|
281
|
シートの移動またはコピー | xlDialogWorkbookAdd | name_array、dest_book、position_num |
|
282
|
シートの移動またはコピー | xlDialogWorkbookMove | name_array、dest_book、position_num |
|
283
|
シートの移動またはコピー | xlDialogWorkbookCopy | name_array、dest_book、position_num |
|
284
|
シート名の変更 | xlDialogWorkbookOptions | sheet_name、bound_logical、new_name |
|
285
|
作業状態の保存 | xlDialogSaveWorkspace | name_text |
|
288
|
グラフ ウィザード - 1/2 | xlDialogChartWizard | long、ref、gallery_num、type_num、plot_by、categories、ser_titles、legend、title、x_title、y_title、z_title、number_cats、number_titles |
|
293
|
xlDialogAssignToTool | bar_id、position、macro_ref | |
|
300
|
オートシェイプの書式設定(プロパティ) | xlDialogPlacement | placement_type |
|
301
|
作業グループへコピー | xlDialogFillWorkgroup | type_num |
|
302
|
挿入 | xlDialogWorkbookNew | |
|
305
|
シナリオの登録と管理 | xlDialogScenarioCells | changing_ref |
|
307
|
シナリオの追加 | xlDialogScenarioAdd | scen_name、value_array、changing_ref、scen_comment、locked、hidden |
|
308
|
xlDialogScenarioEdit | scen_name、new_scenname、value_array、changing_ref、scen_comment、locked、hidden | |
|
311
|
xlDialogScenarioSummary | result_ref、report_type | |
|
312
|
ピボットテーブル/ピボットグラフ ウィザード - 1/3 | xlDialogPivotTableWizard | type、source、destination、name、row_grand、col_grand、save_data、apply_auto_format、auto_page、reserved |
|
313
|
xlDialogPivotFieldProperties | name、pivot_field_name、new_name、orientation、function、formats | |
|
318
|
オプション(計算方法) | xlDialogOptionsCalculation | type_num、iter、max_num、max_change、update、precision、date_1904、calc_save、save_values |
|
319
|
オプション(編集) | xlDialogOptionsEdit | incell_edit、drag_drop、alert、entermove、fixed、decimals、copy_objects、update_links、move_direction、autocomplete、animations |
|
320
|
オプション(表示) | xlDialogOptionsView | formula、status、notes、show_info、object_num、page_breaks、formulas、gridlines、color_num、headers、outline、zeros、hor_scroll、vert_scroll、sheet_tabs |
|
321
|
アドイン | xlDialogAddinManager | operation_num、addinname_text、copy_logical |
|
322
|
xlDialogMenuEditor | ||
|
323
|
ブックへのツールバーの登録 | xlDialogAttachToolbars | |
|
325
|
オプション(グラフ) | xlDialogOptionsChart | display_blanks、plot_visible、size_with_window |
|
328
|
xlDialogVbaInsertFile | filename_text | |
|
330
|
xlDialogVbaProcedureDefinition | ||
|
336
|
xlDialogRoutingSlip | recipients、subject、message、route_num、return_logical、status_logical | |
|
339
|
xlDialogMailLogon | name_text、password_text、download_logical | |
|
342
|
図の挿入 | xlDialogInsertPicture | file_name、filter_number |
|
344
|
(グラフ)オートフォーマット(ドーナツ) | xlDialogGalleryDoughnut | type_num、delete_overlay |
|
350
|
(グラフ)近時曲線の追加 | xlDialogChartTrend | type、ord_per、forecast、backcast、intercept、equation、r_squared、name |
|
354
|
挿入 | xlDialogWorkbookInsert | type_num |
|
355
|
オプション(移行) | xlDialogOptionsTransition | menu_key、menu_key_action、nav_keys、trans_eval、trans_entry |
|
356
|
オプション(全般) | xlDialogOptionsGeneral | R1C1_mode、dde_on、sum_info、tips、recent_files、old_menus、user_info、font_name、font_size、default_location、alternate_location、sheet_num、enable_under |
|
370
|
フィルタオプションの設定 | xlDialogFilterAdvanced | operation、list_ref、criteria_ref、copy_ref、unique |
|
378
|
xlDialogMailNextLetter | ||
|
379
|
(グラフ)データラベル | xlDialogDataLabel | show_option、auto_text、show_key |
|
380
|
(グラフ)タイトルと軸ラベルの表示 | xlDialogInsertTitle | chart、y_primary、x_primary、y_secondary、x_secondary |
|
381
|
セルの書式設定(フォント) | xlDialogFontProperties | font、font_style、size、strikethrough、superscript、subscript、outline、shadow、underline、color、normal、background、start_char、char_count |
|
382
|
xlDialogMacroOptions | macro_name、description、menu_on、menu_text、shortcut_on、shortcut_key、function_category、status_bar_text、help_id、help_file | |
|
384
|
再表示 | xlDialogWorkbookUnhide | sheet_text |
|
386
|
シート名の変更 | xlDialogWorkbookName | oldname_text、newname_text |
|
388
|
(グラフ)オートフォーマット(ユーザー設定) | xlDialogGalleryCustom | name_text |
|
390
|
(グラフ)ユーザー設定のグラフ種類の追加 | xlDialogAddChartAutoformat | name_text、desc_text |
|
392
|
(グラフ)データの追加 | xlDialogChartAddData | ref、rowcol、titles、categories、replace、series |
|
394
|
xlDialogTabOrder | ||
|
398
|
集計の設定 | xlDialogSubtotalCreate | at_change_in、function_num、total、replace、pagebreaks、summary_below |
|
415
|
xlDialogWorkbookTabSplit | ratio_num | |
|
417
|
ブックの保護 | xlDialogWorkbookProtect | structure、windows、password |
|
420
|
xlDialogScrollbarProperties | value、min、max、inc、page、link、3d_shading | |
|
421
|
xlDialogPivotShowPages | name、page_field | |
|
422
|
xlDialogTextToColumns | destination_ref、data_type、text_delim、consecutive_delim、tab、semicolon、comma、space、other、other_char、field_info | |
|
423
|
xlDialogFormatCharttype | apply_to、group_num、dimension、type_num | |
|
433
|
xlDialogPivotFieldGroup | start、end、by、periods | |
|
434
|
xlDialogPivotFieldUngroup | ||
|
435
|
xlDialogCheckboxProperties | value、link、accel_text、accel2_text、3d_shading | |
|
436
|
xlDialogLabelProperties | accel_text、accel2_text、3d_shading | |
|
437
|
xlDialogListboxProperties | range、link、drop_size、multi_select、3d_shading | |
|
438
|
xlDialogEditboxProperties | validation_num、multiline_logical、vscroll_logical、password_logical | |
|
441
|
xlDialogOpenText | file_name、file_origin、start_row、file_type、text_qualifier、consecutive_delim、tab、semicolon、comma、space、other、other_char、field_info | |
|
445
|
xlDialogPushbuttonProperties | default_logical、cancel_logical、dismiss_logical、help_logical、accel_text、accel_text2 | |
|
447
|
xlDialogFilter | ||
|
450
|
関数の挿入 | xlDialogFunctionWizard | |
|
456
|
xlDialogSaveCopyAs | document_text | |
|
458
|
オプション(ユーザー設定リスト) | xlDialogOptionsListsAdd | string_array |
|
458
|
オプション(ユーザー設定リスト) | xlDialogOptionsListsAdd | import_ref、by_row |
|
460
|
xlDialogSeriesAxes | axis_num | |
|
461
|
xlDialogSeriesX | x_ref | |
|
462
|
xlDialogSeriesY | name_ref、y_ref | |
|
463
|
xlDialogErrorbarX | include、type、amount、minus | |
|
464
|
xlDialogErrorbarY | include、type、amount、minus | |
|
465
|
xlDialogFormatChart | layer_num、view、overlap、angle、gap_width、gap_depth、chart_depth、doughnut_size、axis_num、drop、hilo、up_down、series_line、labels、vary | |
|
466
|
xlDialogSeriesOrder | chart_num、old_series_num、new_series_num | |
|
470
|
xlDialogMailEditMailer | to_recipients、cc_recipients、bcc_recipients、subject、enclosures、which_address | |
|
472
|
標準の幅 | xlDialogStandardWidth | standard_num |
|
473
|
シナリオのコピー | xlDialogScenarioMerge | source_file |
|
474
|
プロパティ(ファイルの概要) | xlDialogProperties | title、subject、author、keywords、comments |
|
474
|
プロパティ(ファイルの概要) | xlDialogSummaryInfo | title、subject、author、keywords、comments |
|
475
|
ファイルを開く | xlDialogFindFile | |
|
476
|
セルの書式設定(フォント) | xlDialogActiveCellFont | font、font_style、size、strikethrough、superscript、subscript、outline、shadow、underline、color、normal、background、start_char、char_count |
|
478
|
xlDialogVbaMakeAddIn | ||
|
481
|
ブックの共有 | xlDialogFileSharing | |
|
485
|
オートコレクト(オートコレクト) | xlDialogAutoCorrect | correct_initial_caps、capitalize_days |
|
493
|
ユーザー設定のビュー | xlDialogCustomViews | |
|
496
|
ラベル範囲 | xlDialogInsertNameLabel | |
|
504
|
xlDialogSeriesShape | ||
|
505
|
xlDialogChartOptionsDataLabels | ||
|
506
|
xlDialogChartOptionsDataTable | ||
|
509
|
シートの背景 | xlDialogSetBackgroundPicture | |
|
525
|
データの入力規則(設定) | xlDialogDataValidation | |
|
526
|
xlDialogChartType | ||
|
527
|
xlDialogChartLocation | ||
|
530
|
xlDialogExternalDataProperties | ||
|
540
|
xlDialogChartSourceData | ||
|
557
|
xlDialogSeriesOptions | ||
|
567
|
xlDialogPivotTableOptions | ||
|
568
|
xlDialogPivotSolveOrder | ||
|
570
|
xlDialogPivotCalculatedField | ||
|
572
|
xlDialogPivotCalculatedItem | ||
|
583
|
条件付書式の設定 | xlDialogConditionalFormatting | |
|
596
|
ハイパーリンクの挿入 | xlDialogInsertHyperlink | |
|
620
|
共有ブックの保護 | xlDialogProtectSharing | |
|
647
|
オプション(インターナショナル) | xlDialogOptionsME | def_rtl_sheet、crsr_mvmt、show_ctrl_char、gui_lang |
|
653
|
Web ページとして発行 | xlDialogPublishAsWebPage | |
|
656
|
ふりがなの設定 | xlDialogPhonetic | |
|
666
|
テキスト ファイルのインポート | xlDialogImportTextFile | |
|
667
|
新しいWebクエリ | xlDialogNewWebQuery | |
|
683
|
Web オプション(全般) | xlDialogWebOptionsGeneral | |
|
684
|
Web オプション(ファイル) | xlDialogWebOptionsFiles | |
|
685
|
Web オプション(図) | xlDialogWebOptionsPictures | |
|
686
|
Web オプション(エンコード) | xlDialogWebOptionsEncoding | |
|
687
|
Web オプション(フォント) | xlDialogWebOptionsFonts | |
|
689
|
xlDialogPivotClientServerSet |