Excel VBAリファレンス(Applicationオブジェクト編)
Applicationオブジェクトは、Excel VBAにおける最上位のオブジェクトで、Excelアプリケーション全体を表します。
⇒Excel VBAの主なオブジェクトについては、Excel VBAリファレンス(Excel VBAのオブジェクト構造編)を参照して下さい。
■Applicationオブジェクトの詳細
Applicationオブジェクトで提供されているメソッドとプロパティは下表の通りです。
Applicationオブジェクトのメソッド
| ActivateMicrosoftAppメソッド | |||||||||||
| 説明 | Microsoftアプリケーションをアクティブ化する
(※)XlMSApplication列挙体の値は、以下の通り。 |
||||||||||
| 定義 | Sub ActivateMicrosoftApp(Index As XlMSApplication) | ||||||||||
| AddCustomListメソッド | |||||||||||
| 説明 | オートフィルまたは並べ替え順序のユーザ設定リストを追加する | ||||||||||
| 定義 | Sub AddCustomList(ListArray As Variant, [ByRow As Variant]) | ||||||||||
| Calculateメソッド | |||||||||||
| 説明 | 計算を実行する | ||||||||||
| 定義 | Sub Calculate() | ||||||||||
| CalculateFullメソッド | |||||||||||
| 説明 | 開いているブックのデータを全て計算する | ||||||||||
| 定義 | Sub CalculateFull() | ||||||||||
| CalculateFullRebuildメソッド | |||||||||||
| 説明 | 開いているワークシートのデータを全て計算し、依存関係を再構築する | ||||||||||
| 定義 | Sub CalculateFullRebuild() | ||||||||||
| CalculateUntilAsyncQueriesDoneメソッド | |||||||||||
| 説明 | OLEDBおよびOLAPデータソースへの保留中の全てのクエリを実行する | ||||||||||
| 定義 | Sub CalculateUntilAsyncQueriesDone() | ||||||||||
| CentimetersToPointsメソッド | |||||||||||
| 説明 | センチメートル単位の数値をポイント単位に変換する | ||||||||||
| 定義 | Function CentimetersToPoints(Centimeters As Double) As Double | ||||||||||
| CheckAbortメソッド | |||||||||||
| 説明 | Excelアプリケーションの再計算を停止する | ||||||||||
| 定義 | Sub CheckAbort([KeepAbort As Variant]) | ||||||||||
| CheckSpellingメソッド | |||||||||||
| 説明 | 指定した単語のスペルをチェックする | ||||||||||
| 定義 | Function CheckSpelling(Word As String, [CustomDictionary As Variant], [IgnoreUppercase As Variant]) As Boolean | ||||||||||
| ConvertFormulaメソッド | |||||||||||
| 説明 | 数式内のセル参照形式を変換する(A1⇔R1C1、相対参照⇔絶対参照)
(※)XlReferenceStyle列挙体の値は、以下の通り。 |
||||||||||
| 定義 | Function ConvertFormula(Formula As Variant, FromReferenceStyle As XlReferenceStyle, [ToReferenceStyle As XlReferenceStyle], [ToAbsolute As XlReferenceStyle], [RelativeTo As Range]) As Variant | ||||||||||
| DDEExecuteメソッド | |||||||||||
| 説明 | DDEチャネルを経由して、他のアプリケーション内でコマンドまたは動作を実行する | ||||||||||
| 定義 | Sub DDEExecute(Channel As Long, String As String) | ||||||||||
| DDEInitiateメソッド | |||||||||||
| 説明 | DDEチャネルを開く | ||||||||||
| 定義 | Function DDEInitiate(App As String, Topic As String) As Long | ||||||||||
| DDEPokeメソッド | |||||||||||
| 説明 | DDEチャネルを経由して、他のアプリケーションにデータを送る | ||||||||||
| 定義 | Sub DDEPoke(Channel As Long, Item As Variant, Data As Variant) | ||||||||||
| DDERequestメソッド | |||||||||||
| 説明 | 指定したアプリケーションの情報を返す | ||||||||||
| 定義 | Function DDERequest(Channel As Long, Item As String) As Variant | ||||||||||
| DDETerminateメソッド | |||||||||||
| 説明 | DDEチャネルを閉じる | ||||||||||
| 定義 | Sub DDETerminate(Channel As Long) | ||||||||||
| DeleteCustomListメソッド | |||||||||||
| 説明 | ユーザ設定リストを削除する | ||||||||||
| 定義 | Sub DeleteCustomList(ListNum As Long) | ||||||||||
| DisplayXMLSourcePaneメソッド | |||||||||||
| 説明 | [XMLソース]作業ウィンドウを開き、XMLマップを表示する | ||||||||||
| 定義 | Sub DisplayXMLSourcePane([XmlMap As Variant]) | ||||||||||
| DoubleClickメソッド | |||||||||||
| 説明 | アクティブセルをダブルクリックする | ||||||||||
| 定義 | Sub DoubleClick() | ||||||||||
| Evaluateメソッド | |||||||||||
| 説明 | Excelで使用する名前をオブジェクトまたは値に変換する | ||||||||||
| 定義 | Function Evaluate(Name As Variant) As Variant | ||||||||||
| ExecuteExcel4Macroメソッド | |||||||||||
| 説明 | Excel4.0のマクロを実行する | ||||||||||
| 定義 | Function ExecuteExcel4Macro(String As String) As Variant | ||||||||||
| FindFileメソッド | |||||||||||
| 説明 | [ファイルを開く]ダイアログボックスを表示する | ||||||||||
| 定義 | Function FindFile() As Boolean | ||||||||||
| GetCustomListContentsメソッド | |||||||||||
| 説明 | ユーザ設定リストを文字列の配列として返す | ||||||||||
| 定義 | Function GetCustomListContents(ListNum As Long) As Variant | ||||||||||
| GetCustomListNumメソッド | |||||||||||
| 説明 | 任意の文字列の配列に対応する、ユーザ設定リストの番号を返す | ||||||||||
| 定義 | Function GetCustomListNum(ListArray As Variant) As Long | ||||||||||
| GetOpenFilenameメソッド | |||||||||||
| 説明 | [ファイルを開く]ダイアログボックスを表示する | ||||||||||
| 定義 | Function GetOpenFilename([FileFilter As Variant], [FilterIndex As Variant], [Title As Variant], [ButtonText As Variant], [MultiSelect As Variant]) As Variant | ||||||||||
| GetPhoneticメソッド | |||||||||||
| 説明 | 指定した文字列の日本語の振り仮名を取得する | ||||||||||
| 定義 | Function GetPhonetic([Text As Variant]) As String | ||||||||||
| GetSaveAsFilenameメソッド | |||||||||||
| 説明 | [名前を付けて保存]ダイアログボックスを表示する | ||||||||||
| 定義 | Function GetSaveAsFilename([InitialFilename As Variant], [FileFilter As Variant], [FilterIndex As Variant], [Title As Variant], [ButtonText As Variant]) As Variant | ||||||||||
| Gotoメソッド | |||||||||||
| 説明 | ブック内の任意のVisual Basicプロシージャを選択し、そのブックをアクティブ化する | ||||||||||
| 定義 | Sub Goto([Reference As Variant], [Scroll As Variant]) | ||||||||||
| Helpメソッド | |||||||||||
| 説明 | ヘルプトピックを表示する | ||||||||||
| 定義 | Sub Help([HelpFile As Variant], [HelpContextID As Variant]) | ||||||||||
| InchesToPointsメソッド | |||||||||||
| 説明 | インチ単位の数値をポイント単位に変換する | ||||||||||
| 定義 | Function InchesToPoints(Inches As Double) As Double | ||||||||||
| InputBoxメソッド | |||||||||||
| 説明 | ユーザ入力用のダイアログボックスを表示する | ||||||||||
| 定義 | Function InputBox(Prompt As String, [Title As Variant], [Default As Variant], [Left As Variant], [Top As Variant], [HelpFile As Variant], [HelpContextID As Variant], [Type As Variant]) As Variant | ||||||||||
| Intersectメソッド | |||||||||||
| 説明 | 複数セル範囲の、重なっている部分のセル範囲を取得する | ||||||||||
| 定義 | Function Intersect(Arg1 As Range, Arg2 As Range, [Arg3 As Variant], [Arg4 As Variant], [Arg5 As Variant], [Arg6 As Variant], [Arg7 As Variant], [Arg8 As Variant], [Arg9 As Variant], [Arg10 As Variant], [Arg11 As Variant], [Arg12 As Variant], [Arg13 As Variant], [Arg14 As Variant], [Arg15 As Variant], [Arg16 As Variant], [Arg17 As Variant], [Arg18 As Variant], [Arg19 As Variant], [Arg20 As Variant], [Arg21 As Variant], [Arg22 As Variant], [Arg23 As Variant], [Arg24 As Variant], [Arg25 As Variant], [Arg26 As Variant], [Arg27 As Variant], [Arg28 As Variant], [Arg29 As Variant], [Arg30 As Variant]) As Range | ||||||||||
| MacroOptionsメソッド | |||||||||||
| 説明 | [マクロオプション]ダイアログボックスに対応するオプションを指定する | ||||||||||
| 定義 | Sub MacroOptions([Macro As Variant], [Description As Variant], [HasMenu As Variant], [MenuText As Variant], [HasShortcutKey As Variant], [ShortcutKey As Variant], [Category As Variant], [StatusBar As Variant], [HelpContextID As Variant], [HelpFile As Variant], [ArgumentDescriptions As Variant]) | ||||||||||
| MailLogoffメソッド | |||||||||||
| 説明 | Excelで確立したMAPIメールセッションを終了する | ||||||||||
| 定義 | Sub MailLogoff() | ||||||||||
| MailLogonメソッド | |||||||||||
| 説明 | MAPIメールまたはExchangeにログオンし、メールセッションを確立する | ||||||||||
| 定義 | Sub MailLogon([Name As Variant], [Password As Variant], [DownloadNewMail As Variant]) | ||||||||||
| NextLetterメソッド | |||||||||||
| 説明 | PowerTalkメールのトレイから最も古い未読のブックを開く(Macintoshのみ) | ||||||||||
| 定義 | Function NextLetter() As Workbook | ||||||||||
| OnKeyメソッド | |||||||||||
| 説明 | 特定のキー、またはキーの組合せを押した時、指定したプロシージャを実行する | ||||||||||
| 定義 | Sub OnKey(Key As String, [Procedure As Variant]) | ||||||||||
| OnRepeatメソッド | |||||||||||
| 説明 | [編集]メニューの[繰り返す]に表示するメニュー項目名や、クリック時に実行するプロシジャ名を設定する | ||||||||||
| 定義 | Sub OnRepeat(Text As String, Procedure As String) | ||||||||||
| OnTimeメソッド | |||||||||||
| 説明 | 指定した時刻(特定の日時、または特定の期間の経過後)にプロシジャを実行する | ||||||||||
| 定義 | Sub OnTime(EarliestTime As Variant, Procedure As String, [LatestTime As Variant], [Schedule As Variant]) | ||||||||||
| OnUndoメソッド | |||||||||||
| 説明 | [編集]メニューの[元に戻す]に表示するメニュー項目名や、クリック時に実行するプロシジャ名を設定する | ||||||||||
| 定義 | Sub OnUndo(Text As String, Procedure As String) | ||||||||||
| Quitメソッド | |||||||||||
| 説明 | Excelを終了する | ||||||||||
| 定義 | Sub Quit() | ||||||||||
| RecordMacroメソッド | |||||||||||
| 説明 | マクロ記録機能がオンの時、コードを記録する | ||||||||||
| 定義 | Sub RecordMacro([BasicCode As Variant], [XlmCode As Variant]) | ||||||||||
| RegisterXLLメソッド | |||||||||||
| 説明 | XLLファイルのコードリソースを読み込み、その中に含まれた関数とコマンドを自動的に登録する | ||||||||||
| 定義 | Function RegisterXLL(Filename As String) As Boolean | ||||||||||
| Repeatメソッド | |||||||||||
| 説明 | ユーザが最後に行った操作を繰返す | ||||||||||
| 定義 | Sub Repeat() | ||||||||||
| Runメソッド | |||||||||||
| 説明 | マクロの実行または関数の呼出しを行う | ||||||||||
| 定義 | Function Run([Macro As Variant], [Arg1 As Variant], [Arg2 As Variant], [Arg3 As Variant], [Arg4 As Variant], [Arg5 As Variant], [Arg6 As Variant], [Arg7 As Variant], [Arg8 As Variant], [Arg9 As Variant], [Arg10 As Variant], [Arg11 As Variant], [Arg12 As Variant], [Arg13 As Variant], [Arg14 As Variant], [Arg15 As Variant], [Arg16 As Variant], [Arg17 As Variant], [Arg18 As Variant], [Arg19 As Variant], [Arg20 As Variant], [Arg21 As Variant], [Arg22 As Variant], [Arg23 As Variant], [Arg24 As Variant], [Arg25 As Variant], [Arg26 As Variant], [Arg27 As Variant], [Arg28 As Variant], [Arg29 As Variant], [Arg30 As Variant]) As Variant | ||||||||||
| SaveWorkspaceメソッド | |||||||||||
| 説明 | 現在の作業状態を保存する(廃止済) | ||||||||||
| 定義 | Sub SaveWorkspace([FileName As Variant]) | ||||||||||
| SendKeysメソッド | |||||||||||
| 説明 | アクティブなアプリケーションにキーコードを転送する | ||||||||||
| 定義 | Sub SendKeys(Keys As Variant, [Wait As Variant]) | ||||||||||
| SharePointVersionメソッド | |||||||||||
| 説明 | 指定したサイトで実行されている、Microsoft SharePoint Foundationのバージョン番号を返す | ||||||||||
| 定義 | Function SharePointVersion(bstrUrl As String) As Long | ||||||||||
| Undoメソッド | |||||||||||
| 説明 | ユーザが最後に実行した操作を取消す | ||||||||||
| 定義 | Sub Undo() | ||||||||||
| Unionメソッド | |||||||||||
| 説明 | 2つ以上のセル範囲の集合を返す | ||||||||||
| 定義 | Function Union(Arg1 As Range, Arg2 As Range, [Arg3 As Variant], [Arg4 As Variant], [Arg5 As Variant], [Arg6 As Variant], [Arg7 As Variant], [Arg8 As Variant], [Arg9 As Variant], [Arg10 As Variant], [Arg11 As Variant], [Arg12 As Variant], [Arg13 As Variant], [Arg14 As Variant], [Arg15 As Variant], [Arg16 As Variant], [Arg17 As Variant], [Arg18 As Variant], [Arg19 As Variant], [Arg20 As Variant], [Arg21 As Variant], [Arg22 As Variant], [Arg23 As Variant], [Arg24 As Variant], [Arg25 As Variant], [Arg26 As Variant], [Arg27 As Variant], [Arg28 As Variant], [Arg29 As Variant], [Arg30 As Variant]) As Range | ||||||||||
| Volatileメソッド | |||||||||||
| 説明 | ユーザ定義関数を自動再計算関数にする | ||||||||||
| 定義 | Sub Volatile([Volatile As Variant]) | ||||||||||
| Waitメソッド | |||||||||||
| 説明 | 実行中のマクロを指定の時刻まで停止する | ||||||||||
| 定義 | Function Wait(Time As Variant) As Boolean | ||||||||||
Applicationオブジェクトのプロパティ
| ActiveCellプロパティ(読み取り専用) | |||||||||||
| 説明 | アクティブセルを表すRangeオブジェクトを取得 | ||||||||||
| 定義 | Property ActiveCell() As Range | ||||||||||
| ActiveChartプロパティ(読み取り専用) | |||||||||||
| 説明 | アクティブなグラフシートまたは埋め込みグラフを表すChartオブジェクトを取得 | ||||||||||
| 定義 | Property ActiveChart() As Chart | ||||||||||
| ActiveEncryptionSessionプロパティ(読み取り専用) | |||||||||||
| 説明 | 作業中の文書に関連付けられた暗号化セッションを表す値を取得 | ||||||||||
| 定義 | Property ActiveEncryptionSession() As Long | ||||||||||
| ActivePrinterプロパティ | |||||||||||
| 説明 | 現在使用しているプリンタの名前を設定/取得 | ||||||||||
| 定義 | Property ActivePrinter() As String | ||||||||||
| ActiveProtectedViewWindowプロパティ(読み取り専用) | |||||||||||
| 説明 | アクティブな[保護されたビュー]ウィンドウを表すProtectedViewWindowオブジェクトを取得 | ||||||||||
| 定義 | Property ActiveProtectedViewWindow() As ProtectedViewWindow | ||||||||||
| ActiveSheetプロパティ(読み取り専用) | |||||||||||
| 説明 | アクティブシートを表すWorksheetオブジェクトを取得 | ||||||||||
| 定義 | Property ActiveSheet() As Worksheet | ||||||||||
| ActiveWindowプロパティ(読み取り専用) | |||||||||||
| 説明 | アクティブウィンドウを表すWindowオブジェクトを取得 | ||||||||||
| 定義 | Property ActiveWindow() As Window | ||||||||||
| ActiveWorkbookプロパティ(読み取り専用) | |||||||||||
| 説明 | アクティブウィンドウ内にあるWorkbookオブジェクトを取得 | ||||||||||
| 定義 | Property ActiveWorkbook() As Workbook | ||||||||||
| AddInsプロパティ(読み取り専用) | |||||||||||
| 説明 | [アドイン]ダイアログボックスに表示される全てのアドインを表すAddInsコレクションを取得 | ||||||||||
| 定義 | Property AddIns() As AddIns | ||||||||||
| AddIns2プロパティ(読み取り専用) | |||||||||||
| 説明 | Excelで利用可能または開いている全てのアドインを表すAddIns2コレクションを取得 | ||||||||||
| 定義 | Property AddIns2() As AddIns2 | ||||||||||
| AlertBeforeOverwritingプロパティ | |||||||||||
| 説明 | ドラッグアンドドロップ編集中に空白でないセルを上書きする場合、警告メッセージを表示するかどうかを設定/取得(Trueの場合、警告メッセージを表示) | ||||||||||
| 定義 | Property AlertBeforeOverwriting() As Boolean | ||||||||||
| AltStartupPathプロパティ | |||||||||||
| 説明 | 代替スタートアップフォルダの名前を設定/取得 | ||||||||||
| 定義 | Property AltStartupPath() As String | ||||||||||
| AlwaysUseClearTypeプロパティ | |||||||||||
| 説明 | メニュー、リボン、ダイアログボックスのフォントをClearTypeで表示するかどうかを設定/取得(Trueの場合、ClearTypeで表示) | ||||||||||
| 定義 | Property AlwaysUseClearType() As Boolean | ||||||||||
| Applicationプロパティ(読み取り専用) | |||||||||||
| 説明 | オブジェクトを作成したアプリケーションを表すApplicationオブジェクトを取得 | ||||||||||
| 定義 | Property Application() As Application | ||||||||||
| ArbitraryXMLSupportAvailableプロパティ(読み取り専用) | |||||||||||
| 説明 | XML機能が使用可能かどうかを取得(Trueの場合、使用可能) | ||||||||||
| 定義 | Property ArbitraryXMLSupportAvailable() As Boolean | ||||||||||
| AskToUpdateLinksプロパティ | |||||||||||
| 説明 | Excelファイルを開く際にリンクの更新を確認するかどうかを設定/取得(Trueの場合、リンクの更新を確認) | ||||||||||
| 定義 | Property AskToUpdateLinks() As Boolean | ||||||||||
| Assistanceプロパティ(読み取り専用) | |||||||||||
| 説明 | ヘルプビューアを表すIAssistanceオブジェクトを取得 | ||||||||||
| 定義 | Property Assistance() As IAssistance | ||||||||||
| AutoCorrectプロパティ(読み取り専用) | |||||||||||
| 説明 | オートコレクト機能の設定を表すAutoCorrectオブジェクトを取得 | ||||||||||
| 定義 | Property AutoCorrect() As AutoCorrect | ||||||||||
| AutoFormatAsYouTypeReplaceHyperlinksプロパティ | |||||||||||
| 説明 | ハイパーリンクを自動的に書式設定するかどうかを設定/取得(True(既定値)の場合、自動的に設定) | ||||||||||
| 定義 | Property AutoFormatAsYouTypeReplaceHyperlinks() As Boolean | ||||||||||
| AutomationSecurityプロパティ | |||||||||||
| 説明 | プログラムでファイルを開く際に使用するセキュリティモードを設定/取得
(※)msoAutomationSecurity列挙体の値は、以下の通り。 |
||||||||||
| 定義 | Property AutomationSecurity() As msoAutomationSecurity | ||||||||||
| AutoPercentEntryプロパティ | |||||||||||
| 説明 | 表示形式にパーセンテージが設定されたセルの値を自動的に100倍するかどうかを設定/取得(Trueの場合、100倍しない) | ||||||||||
| 定義 | Property AutoPercentEntry() As Boolean | ||||||||||
| AutoRecoverプロパティ(読み取り専用) | |||||||||||
| 説明 | 一定の間隔で全てのファイル形式をバックアップするAutoRecoverオブジェクトを取得 | ||||||||||
| 定義 | Property AutoRecover() As AutoRecover | ||||||||||
| Buildプロパティ(読み取り専用) | |||||||||||
| 説明 | ビルド番号を取得 | ||||||||||
| 定義 | Property Build() As Long | ||||||||||
| CalculateBeforeSaveプロパティ | |||||||||||
| 説明 | ブックを保存する前に再計算を行うかどうかを設定/取得(Trueの場合、再計算を行う) | ||||||||||
| 定義 | Property CalculateBeforeSave() As Boolean | ||||||||||
| Calculationプロパティ | |||||||||||
| 説明 | 計算方法のモードを設定/取得
(※)XlCalculation列挙体の値は、以下の通り。 |
||||||||||
| 定義 | Property Calculation() As XlCalculation | ||||||||||
| CalculationInterruptKeyプロパティ | |||||||||||
| 説明 | 計算実行時の割込みキーを設定/取得
(※)XlCalculationInterruptKey列挙体の値は、以下の通り。 |
||||||||||
| 定義 | Property CalculationInterruptKey() As XlCalculationInterruptKey | ||||||||||
| CalculationStateプロパティ(読み取り専用) | |||||||||||
| 説明 | 計算実行時の状態を取得
(※)XlCalculationState列挙体の値は、以下の通り。 |
||||||||||
| 定義 | Property CalculationState() As XlCalculationState | ||||||||||
| CalculationVersionプロパティ(読み取り専用) | |||||||||||
| 説明 | バージョン番号(Excelのメジャーバージョン番号+計算エンジンのマイナーバージョン番号)を取得 | ||||||||||
| 定義 | Property CalculationVersion() As Long | ||||||||||
| Callerプロパティ(読み取り専用) | |||||||||||
| 説明 | Visual Basicを呼び出した方法についての情報を取得 | ||||||||||
| 定義 | Property Caller([Index As Variant]) As Variant | ||||||||||
| CanPlaySoundsプロパティ(読み取り専用) | |||||||||||
| 説明 | サウンドカードが再生可能かどうかを取得(使用禁止) | ||||||||||
| 定義 | Property CanPlaySounds() As Boolean | ||||||||||
| CanRecordSoundsプロパティ(読み取り専用) | |||||||||||
| 説明 | サウンドカードが録音可能かどうかを取得(使用禁止) | ||||||||||
| 定義 | Property CanRecordSounds() As Boolean | ||||||||||
| Captionプロパティ | |||||||||||
| 説明 | Excelウィンドウのタイトルバーに表示される名前を設定/取得 | ||||||||||
| 定義 | Property Caption() As String | ||||||||||
| CellDragAndDropプロパティ | |||||||||||
| 説明 | セルのドラッグアンドドロップが有効かどうかを設定/取得(Trueの場合、有効) | ||||||||||
| 定義 | Property CellDragAndDrop() As Boolean | ||||||||||
| Cellsプロパティ(読み取り専用) | |||||||||||
| 説明 | アクティブなワークシートの全てのセルを表すRangeオブジェクトを取得 | ||||||||||
| 定義 | Property Cells() As Range | ||||||||||
| ChartDataPointTrackプロパティ | |||||||||||
| 説明 | 全てのグラフでセル参照追跡動作を使用するかどうかを設定/取得(Trueの場合、使用する) | ||||||||||
| 定義 | Property ChartDataPointTrack() As Boolean | ||||||||||
| Chartsプロパティ(読み取り専用) | |||||||||||
| 説明 | アクティブなブック内の全てのグラフシートを表すSheetsコレクションを取得 | ||||||||||
| 定義 | Property Charts() As Sheets | ||||||||||
| ClipboardFormatsプロパティ(読み取り専用) | |||||||||||
| 説明 | 現在クリップボードにあるオブジェクトで使用できる形式を数値の配列として取得
⇒詳細は、Excel VBAの覚え書(クリップボード編)~Microsoft FormsのDataObjectによるClipboard操作を参照して下さい。 |
||||||||||
| 定義 | Property ClipboardFormats([Index As Variant]) As Variant | ||||||||||
| ClusterConnectorプロパティ | |||||||||||
| 説明 | XLLアドインでユーザ定義関数を実行するために使用される高性能コンピューティング(HPC)クラスターコネクタの名前を設定/取得 | ||||||||||
| 定義 | Property ClusterConnector() As String | ||||||||||
| Columnsプロパティ(読み取り専用) | |||||||||||
| 説明 | アクティブなワークシートの全ての列を表すRangeオブジェクトを取得 | ||||||||||
| 定義 | Property Columns() As Range | ||||||||||
| COMAddInsプロパティ(読み取り専用) | |||||||||||
| 説明 | 現在インストールされているCOMアドインを表すCOMAddInsコレクションを取得 | ||||||||||
| 定義 | Property COMAddIns() As XlRangeAutoFormat | ||||||||||
| CommandBarsプロパティ(読み取り専用) | |||||||||||
| 説明 | コマンドバーを表すCommandBarsコレクションを取得 | ||||||||||
| 定義 | Property CommandBars() As XlRunAutoMacro | ||||||||||
| CommandUnderlinesプロパティ | |||||||||||
| 説明 | コマンドの下線表示の状態を示す値を設定/取得(Macintoshのみ)
(※)XlCommandUnderlines列挙体の値は、以下の通り。 |
||||||||||
| 定義 | Property CommandUnderlines() As XlCommandUnderlines | ||||||||||
| ConstrainNumericプロパティ | |||||||||||
| 説明 | 手書き認識機能を数字と句読点に制限するかどうかを設定/取得(True の場合、制限する) | ||||||||||
| 定義 | Property ConstrainNumeric() As Boolean | ||||||||||
| ControlCharactersプロパティ | |||||||||||
| 説明 | 右から左に記述する言語の制御文字を表示するかどうかを設定/取得(Trueの場合、表示する) | ||||||||||
| 定義 | Property ControlCharacters() As Boolean | ||||||||||
| CopyObjectsWithCellsプロパティ | |||||||||||
| 説明 | セルと共にオブジェクトの切り取り、コピー、抽出、並べ替えをできるようにするかどうかを設定/取得(Trueの場合、できるようにする) | ||||||||||
| 定義 | Property CopyObjectsWithCells() As Boolean | ||||||||||
| Creatorプロパティ(読み取り専用) | |||||||||||
| 説明 | オブジェクトを作成したアプリケーションの整数値を取得
(※)XlCreator列挙体は、以下の値のみ。 |
||||||||||
| 定義 | Property Creator() As XlCreator | ||||||||||
| Cursorプロパティ | |||||||||||
| 説明 | マウスポインターの形状を設定/取得
(※)XlMousePointer列挙体の値は、以下の通り。 |
||||||||||
| 定義 | Property Cursor() As XlMousePointer | ||||||||||
| CursorMovementプロパティ | |||||||||||
| 説明 | ビジュアルカーソルまたはロジカルカーソルを示す値を設定/取得
(※)設定/取得が可能な値は、以下の通り。 |
||||||||||
| 定義 | Property CursorMovement() As Long | ||||||||||
| CustomListCountプロパティ(読み取り専用) | |||||||||||
| 説明 | ユーザ設定リストの数を取得 | ||||||||||
| 定義 | Property CustomListCount() As Long | ||||||||||
| CutCopyModeプロパティ | |||||||||||
| 説明 | 切り取りモードまたはコピーモードの状態を示す値を設定/取得
(※)XlCutCopyMode列挙体の値は、以下の通り。 |
||||||||||
| 定義 | Property CutCopyMode() As XlCutCopyMode | ||||||||||
| DataEntryModeプロパティ | |||||||||||
| 説明 | データ入力モードの状態を示す値を設定/取得
(※)設定/取得が可能な値は、以下の通り。 |
||||||||||
| 定義 | Property DataEntryMode() As Long | ||||||||||
| DDEAppReturnCodeプロパティ(読み取り専用) | |||||||||||
| 説明 | アプリケーション固有のDDEリターンコードを取得 | ||||||||||
| 定義 | Property DDEAppReturnCode() As Long | ||||||||||
| DecimalSeparatorプロパティ | |||||||||||
| 説明 | 小数点の記号として使用する文字を設定/取得 | ||||||||||
| 定義 | Property DecimalSeparator() As String | ||||||||||
| DefaultFilePathプロパティ | |||||||||||
| 説明 | ファイルを開く時に使用する既定のパスを設定/取得 | ||||||||||
| 定義 | Property DefaultFilePath() As String | ||||||||||
| DefaultSaveFormatプロパティ | |||||||||||
| 説明 | ファイルを保存する既定の形式を設定/取得
(※)XlFileFormat列挙体については、別表参照。 |
||||||||||
| 定義 | Property DefaultSaveFormat() As XlFileFormat | ||||||||||
| DefaultSheetDirectionプロパティ | |||||||||||
| 説明 | 新しいウィンドウまたはワークシートの既定の方向を設定/取得
(※)設定/取得が可能な値は、以下の通り。 |
||||||||||
| 定義 | Property DefaultSheetDirection() As Long | ||||||||||
| DefaultWebOptionsプロパティ(読み取り専用) | |||||||||||
| 説明 | アプリケーションレベルのWebオプションを表すDefaultWebOptionsオブジェクトを取得 | ||||||||||
| 定義 | Property DefaultWebOptions() As DefaultWebOptions | ||||||||||
| DeferAsyncQueriesプロパティ | |||||||||||
| 説明 | ワークシートの計算を行う際、OLAPデータソースへの非同期クエリを実行するかどうかを設定/取得 | ||||||||||
| 定義 | Property DeferAsyncQueries() As Boolean | ||||||||||
| Dialogsプロパティ(読み取り専用) | |||||||||||
| 説明 | 全ての組み込みダイアログボックスを表すDialogsコレクションを取得 | ||||||||||
| 定義 | Property Dialogs() As Dialogs | ||||||||||
| DisplayAlertsプロパティ | |||||||||||
| 説明 | マクロの実行中に特定の警告やメッセージを表示するかどうかを設定/取得(Trueの場合、表示する) | ||||||||||
| 定義 | Property DisplayAlerts() As Boolean | ||||||||||
| DisplayClipboardWindowプロパティ | |||||||||||
| 説明 | Officeのクリップボードを表示できるかどうかを設定/取得(Trueの場合は、表示できる) | ||||||||||
| 定義 | Property DisplayClipboardWindow() As Boolean | ||||||||||
| DisplayCommentIndicatorプロパティ | |||||||||||
| 説明 | セルにコメントとコメントマークを表示する方法を設定/取得
(※)XlCommentDisplayMode列挙体の値は、以下の通り。 |
||||||||||
| 定義 | Property DisplayCommentIndicator() As XlCommentDisplayMode | ||||||||||
| DisplayDocumentActionTaskPaneプロパティ | |||||||||||
| 説明 | [ドキュメント アクション]作業ウィンドウを表示するかどうかを設定/取得(Trueの場合、表示する) | ||||||||||
| 定義 | Property DisplayDocumentActionTaskPane() As Boolean | ||||||||||
| DisplayDocumentInformationPanelプロパティ | |||||||||||
| 説明 | ドキュメントプロパティパネルを表示するかどうかを設定/取得(Trueの場合、表示する) | ||||||||||
| 定義 | Property DisplayDocumentInformationPanel() As Boolean | ||||||||||
| DisplayExcel4Menusプロパティ | |||||||||||
| 説明 | Excel 4.0のメニューバーを表示するかどうかを設定/取得(Trueの場合、表示する) | ||||||||||
| 定義 | Property DisplayExcel4Menus() As Boolean | ||||||||||
| DisplayFormulaAutoCompleteプロパティ | |||||||||||
| 説明 | セルの数式を作成する際、関連する関数と定義済の名前のリストを表示するかどうかを設定/取得(Trueの場合、表示する) | ||||||||||
| 定義 | Property DisplayFormulaAutoComplete() As Boolean | ||||||||||
| DisplayFormulaBarプロパティ | |||||||||||
| 説明 | 数式バーを表示するかどうかを設定/取得(Trueの場合、表示する) | ||||||||||
| 定義 | Property DisplayFormulaBar() As Boolean | ||||||||||
| DisplayFullScreenプロパティ | |||||||||||
| 説明 | 全画面表示にするかどうかを設定/取得(Trueの場合、全画面表示にする) | ||||||||||
| 定義 | Property DisplayFullScreen() As Boolean | ||||||||||
| DisplayFunctionToolTipsプロパティ | |||||||||||
| 説明 | 関数のボタン名を表示するかどうかを設定/取得(Trueの場合、表示する) | ||||||||||
| 定義 | Property DisplayFunctionToolTips() As Boolean | ||||||||||
| DisplayInsertOptionsプロパティ | |||||||||||
| 説明 | [挿入オプション]ボタンを表示するかどうかを設定/取得(Trueの場合、表示する) | ||||||||||
| 定義 | Property DisplayInsertOptions() As Boolean | ||||||||||
| DisplayNoteIndicatorプロパティ | |||||||||||
| 説明 | コメントのあるセルにコメントマークを表示するかどうかを設定/取得(Trueの場合、表示する) | ||||||||||
| 定義 | Property DisplayNoteIndicator() As Boolean | ||||||||||
| DisplayPasteOptionsプロパティ | |||||||||||
| 説明 | [貼り付けオプション]ボタンを表示するかどうかを設定/取得(Trueの場合、表示する) | ||||||||||
| 定義 | Property DisplayPasteOptions() As Boolean | ||||||||||
| DisplayRecentFilesプロパティ | |||||||||||
| 説明 | 最近使用したファイルの一覧を表示するかどうかを設定/取得(Trueの場合、表示する) | ||||||||||
| 定義 | Property DisplayRecentFiles() As Boolean | ||||||||||
| DisplayScrollBarsプロパティ | |||||||||||
| 説明 | スクロールバーを表示するかどうかを設定/取得(Trueの場合、表示する) | ||||||||||
| 定義 | Property DisplayScrollBars() As Boolean | ||||||||||
| DisplayStatusBarプロパティ | |||||||||||
| 説明 | ステータスバーを表示するかどうかを設定/取得(Trueの場合、表示する) | ||||||||||
| 定義 | Property DisplayStatusBar() As Boolean | ||||||||||
| EditDirectlyInCellプロパティ | |||||||||||
| 説明 | セル内編集を有効にするかどうかを設定/取得(Trueの場合、有効) | ||||||||||
| 定義 | Property EditDirectlyInCell() As Boolean | ||||||||||
| EnableAnimationsプロパティ | |||||||||||
| 説明 | アニメーションを有効にするかどうかを設定/取得(Trueの場合、有効)(非推奨) | ||||||||||
| 定義 | Property EnableAnimations() As Boolean | ||||||||||
| EnableAutoCompleteプロパティ | |||||||||||
| 説明 | オートコンプリート機能を有効にするかどうかを設定/取得(Trueの場合、有効) | ||||||||||
| 定義 | Property EnableAutoComplete() As Boolean | ||||||||||
| EnableCancelKeyプロパティ | |||||||||||
| 説明 | 実行中のプロシジャに対する割り込みの処理を設定/取得
(※)XlEnableCancelKey列挙体の値は、以下の通り。 |
||||||||||
| 定義 | Property EnableCancelKey() As XlEnableCancelKey | ||||||||||
| EnableCheckFileExtensionsプロパティ | |||||||||||
| 説明 | [Excelが既定のプログラムでない場合に通知する]ダイアログボックスを有効にするかどうかを設定/取得(Trueの場合、有効) | ||||||||||
| 定義 | Property EnableCheckFileExtensions() As Boolean | ||||||||||
| EnableEventsプロパティ | |||||||||||
| 説明 | イベントの発生を有効にするかどうかを設定/取得(Trueの場合、有効) | ||||||||||
| 定義 | Property EnableEvents() As Boolean | ||||||||||
| EnableLargeOperationAlertプロパティ | |||||||||||
| 説明 | 多くのセルに影響を与える動作を実行しようとした時に警告メッセージを表示するかどうかを設定/取得(Trueの場合、表示する) | ||||||||||
| 定義 | Property EnableLargeOperationAlert() As Boolean | ||||||||||
| EnableLivePreviewプロパティ | |||||||||||
| 説明 | プレビュー表示機能を有効にするかどうかを設定/取得(Trueの場合、有効) | ||||||||||
| 定義 | Property EnableLivePreview() As Boolean | ||||||||||
| EnableMacroAnimationsプロパティ | |||||||||||
| 説明 | マクロアニメーションを有効にするかどうかを設定/取得(Trueの場合、有効) | ||||||||||
| 定義 | Property EnableMacroAnimations() As Boolean | ||||||||||
| EnableSoundプロパティ | |||||||||||
| 説明 | サウンドを有効にするかどうかを設定/取得(Trueの場合、有効) | ||||||||||
| 定義 | Property EnableSound() As Boolean | ||||||||||
| ErrorCheckingOptionsプロパティ(読み取り専用) | |||||||||||
| 説明 | エラーチェックオプションを表すErrorCheckingOptionsオブジェクトを取得 | ||||||||||
| 定義 | Property ErrorCheckingOptions() As ErrorCheckingOptions | ||||||||||
| Excel4IntlMacroSheetsプロパティ(読み取り専用) | |||||||||||
| 説明 | 全てのExcel 4.0インターナショナルマクロシートを表すSheetsコレクションを取得 | ||||||||||
| 定義 | Property Excel4IntlMacroSheets() As Sheets | ||||||||||
| Excel4MacroSheetsプロパティ(読み取り専用) | |||||||||||
| 説明 | 全てのExcel 4.0マクロシートを表すSheetsコレクションを取得 | ||||||||||
| 定義 | Property Excel4MacroSheets() As Sheets | ||||||||||
| ExtendListプロパティ | |||||||||||
| 説明 | リストに追加される新しいデータの書式および数式の適用を自動的に拡張するかどうかを設定/取得(Trueの場合、拡張する) | ||||||||||
| 定義 | Property ExtendList() As Boolean | ||||||||||
| FeatureInstallプロパティ | |||||||||||
| 説明 | インストールされていない機能が必要な時の処理を設定/取得
(※)MsoFeatureInstall列挙体の値は、以下の通り。 |
||||||||||
| 定義 | Property FeatureInstall() As MsoFeatureInstall | ||||||||||
| FileConvertersプロパティ(読み取り専用) | |||||||||||
| 説明 | インストールされているファイルコンバータの情報を取得 | ||||||||||
| 定義 | Property FileConverters([Index1 As Variant], [Index2 As Variant]) As Variant | ||||||||||
| FileDialogプロパティ(読み取り専用) | |||||||||||
| 説明 | ファイルダイアログボックスのインスタンスを表すFileDialogオブジェクトを取得
(※)MsoFileDialogType列挙体の値は、以下の通り。 |
||||||||||
| 定義 | Property FileDialog(fileDialogType As MsoFileDialogType) As FileDialog | ||||||||||
| FileExportConvertersプロパティ(読み取り専用) | |||||||||||
| 説明 | 全てのファイルコンバータを表すFileExportConvertersコレクションを取得 | ||||||||||
| 定義 | Property FileExportConverters() As FileExportConverters | ||||||||||
| FileValidationプロパティ | |||||||||||
| 説明 | ファイルを検証してから開く方法を設定/取得
(※)MsoFileValidationMode列挙体の値は、以下の通り。 |
||||||||||
| 定義 | Property FileValidation() As MsoFileValidationMode | ||||||||||
| FileValidationPivotプロパティ | |||||||||||
| 説明 | ピボットテーブルレポートのデータキャッシュの内容を検証する方法を設定/取得
(※)XlFileValidationPivotMode列挙体の値は、以下の通り。 |
||||||||||
| 定義 | Property FileValidationPivot() As XlFileValidationPivotMode | ||||||||||
| FindFormatプロパティ | |||||||||||
| 説明 | セルの書式の検索条件をCellFormatオブジェクトで設定/取得 | ||||||||||
| 定義 | Property FindFormat() As CellFormat | ||||||||||
| FixedDecimalプロパティ | |||||||||||
| 説明 | FixedDecimalPlacesプロパティに設定されている桁数で小数点位置を固定するかどうかを設定/取得(Trueの場合、固定する) | ||||||||||
| 定義 | Property FixedDecimal() As Boolean | ||||||||||
| FixedDecimalPlacesプロパティ | |||||||||||
| 説明 | FixedDecimalプロパティがTrueの場合に固定する小数点位置の桁数を設定/取得 | ||||||||||
| 定義 | Property FixedDecimalPlaces() As Long | ||||||||||
| FlashFillプロパティ | |||||||||||
| 説明 | フラッシュフィル機能が有効でアクティブかどうかを設定/取得(Trueの場合、有効でアクティブ) | ||||||||||
| 定義 | Property FlashFill() As Boolean | ||||||||||
| FlashFillModeプロパティ | |||||||||||
| 説明 | フラッシュフィル機能が有効かどうかを設定/取得(Trueの場合、有効) | ||||||||||
| 定義 | Property FlashFillMode() As Boolean | ||||||||||
| FormulaBarHeightプロパティ | |||||||||||
| 説明 | 数式バーの高さを行数で設定/取得 | ||||||||||
| 定義 | Property FormulaBarHeight() As Long | ||||||||||
| GenerateGetPivotDataプロパティ | |||||||||||
| 説明 | ピボットテーブルレポートのデータが取得できるかどうかを設定/取得(Trueの場合、取得できる) | ||||||||||
| 定義 | Property GenerateGetPivotData() As Boolean | ||||||||||
| GenerateTableRefsプロパティ | |||||||||||
| 説明 | 数式で表を参照する際の表記方法を設定/取得
(※)XlGenerateTableRefs列挙体の値は、以下の通り。 |
||||||||||
| 定義 | Property GenerateTableRefs() As XlGenerateTableRefs | ||||||||||
| Heightプロパティ | |||||||||||
| 説明 | アプリケーションのメインウィンドウの高さを設定/取得 | ||||||||||
| 定義 | Property Height() As Double | ||||||||||
| HighQualityModeForGraphicsプロパティ | |||||||||||
| 説明 | 高画質モードを使用してグラフィックを印刷するかどうかを設定/取得(Trueの場合、高画質モードで印刷する) | ||||||||||
| 定義 | Property HighQualityModeForGraphics() As Boolean | ||||||||||
| Hinstanceプロパティ(読み取り専用) | |||||||||||
| 説明 | Applicationオブジェクトで表されるインスタンスへのハンドルを取得(32ビット版のみ) | ||||||||||
| 定義 | Property Hinstance() As Long | ||||||||||
| HinstancePtrプロパティ(読み取り専用) | |||||||||||
| 説明 | Applicationオブジェクトで表されるインスタンスへのハンドルを取得 | ||||||||||
| 定義 | Property HinstancePtr() As Variant | ||||||||||
| Hwndプロパティ(読み取り専用) | |||||||||||
| 説明 | Excelウィンドウの最上位レベルのウィンドウハンドルを取得 | ||||||||||
| 定義 | Property Hwnd() As Long | ||||||||||
| IgnoreRemoteRequestsプロパティ | |||||||||||
| 説明 | リモートDDE要求を無視するかどうかを設定/取得(Trueの場合、無視する) | ||||||||||
| 定義 | Property IgnoreRemoteRequests() As Boolean | ||||||||||
| Interactiveプロパティ | |||||||||||
| 説明 | Excelを対話モードにするかどうかを設定/取得(Trueの場合、対話モード(既定)) | ||||||||||
| 定義 | Property Interactive() As Boolean | ||||||||||
| Internationalプロパティ(読み取り専用) | |||||||||||
| 説明 | 現在の国/地域名および国際対応の設定に関する情報を取得 | ||||||||||
| 定義 | Property International([Index As Variant]) As Variant | ||||||||||
| IsSandboxedプロパティ(読み取り専用) | |||||||||||
| 説明 | [保護されたビュー]ウィンドウで開いているかどうかを設定/取得(Trueの場合、[保護されたビュー]ウィンドウで開いている) | ||||||||||
| 定義 | Property IsSandboxed() As Boolean | ||||||||||
| Iterationプロパティ | |||||||||||
| 説明 | 反復計算によって循環参照を解決するかどうかを設定/取得(Trueの場合、循環参照を解決する) | ||||||||||
| 定義 | Property Iteration() As Boolean | ||||||||||
| LanguageSettingsプロパティ(読み取り専用) | |||||||||||
| 説明 | 言語の設定に関する情報を含むLanguageSettingsオブジェクトを取得 | ||||||||||
| 定義 | Property LanguageSettings() As LanguageSettings | ||||||||||
| LargeOperationCellThousandCountプロパティ | |||||||||||
| 説明 | 操作時に警告を発生させる基準となるセルの最大数を設定/取得 | ||||||||||
| 定義 | Property LargeOperationCellThousandCount() As Long | ||||||||||
| Leftプロパティ | |||||||||||
| 説明 | 画面の左端からExcelウィンドウの左端までの距離をポイント単位で設定/取得 | ||||||||||
| 定義 | Property Left() As Double | ||||||||||
| LibraryPathプロパティ(読み取り専用) | |||||||||||
| 説明 | Libraryフォルダへのパスを取得 | ||||||||||
| 定義 | Property LibraryPath() As String | ||||||||||
| MailSessionプロパティ(読み取り専用) | |||||||||||
| 説明 | MAPIメールセッション番号を16進文字列で取得 | ||||||||||
| 定義 | Property MailSession() As Variant | ||||||||||
| MailSystemプロパティ(読み取り専用) | |||||||||||
| 説明 | メールシステムの種類を取得
(※)XlMailSystem列挙体の値は、以下の通り。 |
||||||||||
| 定義 | Property MailSystem() As XlMailSystem | ||||||||||
| MapPaperSizeプロパティ | |||||||||||
| 説明 | 国/地域の標準用紙サイズで正しく印刷できるよう自動的に調整するかどうかを設定/取得(Trueの場合、自動的に調整する) | ||||||||||
| 定義 | Property MapPaperSize() As Boolean | ||||||||||
| MathCoprocessorAvailableプロパティ(読み取り専用) | |||||||||||
| 説明 | 数値演算コプロセッサが利用可能かどうかを取得(Trueの場合、利用可能) | ||||||||||
| 定義 | Property MathCoprocessorAvailable() As Boolean | ||||||||||
| MaxChangeプロパティ | |||||||||||
| 説明 | 反復計算によって循環参照を解決する場合、反復計算に適用する変化の最大値を設定/取得 | ||||||||||
| 定義 | Property MaxChange() As Double | ||||||||||
| MaxIterationsプロパティ | |||||||||||
| 説明 | 反復計算によって循環参照を解決する場合、最大反復回数を設定/取得 | ||||||||||
| 定義 | Property MaxIterations() As Long | ||||||||||
| MeasurementUnitプロパティ | |||||||||||
| 説明 | アプリケーションで使用する測定単位を設定/取得
(※)XlMeasurementUnits列挙体の値は、以下の通り。 |
||||||||||
| 定義 | Property MeasurementUnit() As XlMeasurementUnits | ||||||||||
| MergeInstancesプロパティ | |||||||||||
| 説明 | アプリケーションの複数のインスタンスを1つのインスタンスにマージするかどうかを設定/取得(Trueの場合、マージする) | ||||||||||
| 定義 | Property MergeInstances() As Boolean | ||||||||||
| MouseAvailableプロパティ(読み取り専用) | |||||||||||
| 説明 | マウスが使用可能かどうかを取得(Trueの場合、使用可能) | ||||||||||
| 定義 | Property MouseAvailable() As Boolean | ||||||||||
| MoveAfterReturnプロパティ | |||||||||||
| 説明 | Enter(Return)キーを押した時にアクティブセルを移動するかどうかを設定/取得(Trueの場合、移動する) | ||||||||||
| 定義 | Property MoveAfterReturn() As Boolean | ||||||||||
| MoveAfterReturnDirectionプロパティ | |||||||||||
| 説明 | Enter(Return)キーを押した時にアクティブセルを移動する方向を設定/取得
(※)XlDirection列挙体の値は、以下の通り。 |
||||||||||
| 定義 | Property MoveAfterReturnDirection() As XlDirection | ||||||||||
| MultiThreadedCalculationプロパティ(読み取り専用) | |||||||||||
| 説明 | マルチスレッド再計算設定を制御するMultiThreadedCalculationオブジェクトを取得 | ||||||||||
| 定義 | Property MultiThreadedCalculation() As MultiThreadedCalculation | ||||||||||
| Nameプロパティ(読み取り専用) | |||||||||||
| 説明 | オブジェクトの名前を取得 | ||||||||||
| 定義 | Property Name() As String | ||||||||||
| Namesプロパティ(読み取り専用) | |||||||||||
| 説明 | アクティブなブック内の全ての名前を表すNamesコレクションを取得 | ||||||||||
| 定義 | Property Names() As Names | ||||||||||
| NetworkTemplatesPathプロパティ(読み取り専用) | |||||||||||
| 説明 | テンプレートが保存されているネットワークパスを取得 | ||||||||||
| 定義 | Property NetworkTemplatesPath() As String | ||||||||||
| NewWorkbookプロパティ(読み取り専用) | |||||||||||
| 説明 | [新しいアイテム]作業ウィンドウに一覧表示されるアイテムを表すNewFileオブジェクトを取得 | ||||||||||
| 定義 | Property NewWorkbook() As NewFile | ||||||||||
| ODBCErrorsプロパティ(読み取り専用) | |||||||||||
| 説明 | ODBCクエリで返されるエラーを表すODBCErrorsコレクションを取得 | ||||||||||
| 定義 | Property ODBCErrors() As ODBCErrors | ||||||||||
| ODBCTimeoutプロパティ | |||||||||||
| 説明 | ODBCクエリの時間制限を秒単位で設定/取得(既定値は45秒) | ||||||||||
| 定義 | Property ODBCTimeout() As Long | ||||||||||
| OLEDBErrorsプロパティ(読み取り専用) | |||||||||||
| 説明 | OLE DBクエリで返されるエラーを表すOLEDBErrorsコレクションを取得 | ||||||||||
| 定義 | Property OLEDBErrors() As OLEDBErrors | ||||||||||
| OnWindowプロパティ | |||||||||||
| 説明 | ウィンドウをアクティブ化する時に実行するプロシジャの名前を設定/取得 | ||||||||||
| 定義 | Property OnWindow() As String | ||||||||||
| OperatingSystemプロパティ(読み取り専用) | |||||||||||
| 説明 | 現在のオペレーティングシステムの名前とバージョン番号を取得 | ||||||||||
| 定義 | Property OperatingSystem() As String | ||||||||||
| OrganizationNameプロパティ(読み取り専用) | |||||||||||
| 説明 | 登録済の組織名を取得 | ||||||||||
| 定義 | Property OrganizationName() As String | ||||||||||
| Parentプロパティ(読み取り専用) | |||||||||||
| 説明 | 指定したオブジェクトの親オブジェクトを取得 | ||||||||||
| 定義 | Property Parent() As Application | ||||||||||
| Pathプロパティ(読み取り専用) | |||||||||||
| 説明 | アプリケーションの絶対パスを取得 | ||||||||||
| 定義 | Property Path() As String | ||||||||||
| PathSeparatorプロパティ(読み取り専用) | |||||||||||
| 説明 | パスセパレータ(\)を取得 | ||||||||||
| 定義 | Property PathSeparator() As String | ||||||||||
| PivotTableSelectionプロパティ | |||||||||||
| 説明 | ピボットテーブルレポートの選択範囲を有効にするかどうかを設定/取得(Trueの場合、有効) | ||||||||||
| 定義 | Property PivotTableSelection() As Boolean | ||||||||||
| PreviousSelectionsプロパティ(読み取り専用) | |||||||||||
| 説明 | 選択したセル範囲または名前をRangeオブジェクトの配列で取得(4つ前まで取得可能) | ||||||||||
| 定義 | Property PreviousSelections([Index As Variant]) As Variant | ||||||||||
| PrintCommunicationプロパティ | |||||||||||
| 説明 | プリンタとの通信が有効かどうかを設定/取得(Trueの場合、有効) | ||||||||||
| 定義 | Property PrintCommunication() As Boolean | ||||||||||
| ProductCodeプロパティ(読み取り専用) | |||||||||||
| 説明 | Excelのグローバル一意識別子(GUID)を取得 | ||||||||||
| 定義 | Property ProductCode() As String | ||||||||||
| PromptForSummaryInfoプロパティ | |||||||||||
| 説明 | ファイルの初回保存時に文書情報の入力を要求するどうかを設定/取得(Trueの場合、要求する) | ||||||||||
| 定義 | Property PromptForSummaryInfo() As Boolean | ||||||||||
| ProtectedViewWindowsプロパティ(読み取り専用) | |||||||||||
| 説明 | アプリケーションで開かれている全ての[保護されたビュー]ウィンドウを表すProtectedViewWindowsコレクションを取得 | ||||||||||
| 定義 | Property ProtectedViewWindows() As ProtectedViewWindows | ||||||||||
| QuickAnalysisプロパティ(読み取り専用) | |||||||||||
| 説明 | アプリケーションのクイック分析オプションを表すQuickAnalysisオブジェクトを取得 | ||||||||||
| 定義 | Property QuickAnalysis() As QuickAnalysis | ||||||||||
| Rangeプロパティ(読み取り専用) | |||||||||||
| 説明 | セルまたはセル範囲を表すRangeオブジェクトを取得 | ||||||||||
| 定義 | Property Range(Cell1 As Variant, [Cell2 As Variant]) As Range | ||||||||||
| Readyプロパティ(読み取り専用) | |||||||||||
| 説明 | アプリケーションの準備ができているかどうかを取得(Trueの場合、準備完了) | ||||||||||
| 定義 | Property Ready() As Boolean | ||||||||||
| RecentFilesプロパティ(読み取り専用) | |||||||||||
| 説明 | 最近使用したファイルの一覧を表すRecentFilesコレクションを取得 | ||||||||||
| 定義 | Property RecentFiles() As RecentFiles | ||||||||||
| RecordRelativeプロパティ(読み取り専用) | |||||||||||
| 説明 | マクロ記録で相対参照するかどうかを設定/取得(Trueの場合、相対参照) | ||||||||||
| 定義 | Property RecordRelative() As Boolean | ||||||||||
| ReferenceStyleプロパティ | |||||||||||
| 説明 | 行見出しと列見出しの表示形式を設定/取得
(※)XlReferenceStyle列挙体の値は、以下の通り。 |
||||||||||
| 定義 | Property ReferenceStyle() As XlReferenceStyle | ||||||||||
| RegisteredFunctionsプロパティ(読み取り専用) | |||||||||||
| 説明 | REGISTER関数またはREGISTER.ID関数で登録されたDLLまたはコードリソースの関数に関する情報を取得 | ||||||||||
| 定義 | Property RegisteredFunctions([Index1 As Variant], [Index2 As Variant]) As Variant | ||||||||||
| ReplaceFormatプロパティ | |||||||||||
| 説明 | セルの書式を置換する際の基準をCellFormatオブジェクトで設定/取得 | ||||||||||
| 定義 | Property ReplaceFormat() As CellFormat | ||||||||||
| RollZoomプロパティ | |||||||||||
| 説明 | IntelliMouseでスクロールではなくズーム機能を実行するかどうかを設定/取得(Trueの場合、ズーム機能を実行する) | ||||||||||
| 定義 | Property RollZoom() As Boolean | ||||||||||
| Rowsプロパティ(読み取り専用) | |||||||||||
| 説明 | アクティブなワークシートの全ての行を表すRangeオブジェクトを取得 | ||||||||||
| 定義 | Property Rows() As Range | ||||||||||
| RTDプロパティ(読み取り専用) | |||||||||||
| 説明 | オブジェクトのリアルタイムデータを表すRTDオブジェクトを取得 | ||||||||||
| 定義 | Property RTD() As RTD | ||||||||||
| ScreenUpdatingプロパティ | |||||||||||
| 説明 | 画面の更新を有効にするかどうかを設定/取得(Trueの場合、有効) | ||||||||||
| 定義 | Property ScreenUpdating() As Boolean | ||||||||||
| Selectionプロパティ(読み取り専用) | |||||||||||
| 説明 | アクティブウィンドウで現在選択されているオブジェクトを取得 | ||||||||||
| 定義 | Property Selection() As Object | ||||||||||
| SensitivityLabelPolicyプロパティ(読み取り専用) | |||||||||||
| 説明 | 感度ラベルポリシーを表すSensitivityLabelPolicyオブジェクトを取得 | ||||||||||
| 定義 | Property SensitivityLabelPolicy() As SensitivityLabelPolicy | ||||||||||
| Sheetsプロパティ(読み取り専用) | |||||||||||
| 説明 | アクティブなブック内の全てのシートを表すSheetsコレクションを取得 | ||||||||||
| 定義 | Property Sheets() As Sheets | ||||||||||
| SheetsInNewWorkbookプロパティ | |||||||||||
| 説明 | 新規ブックに自動的に挿入されるシート数を設定/取得 | ||||||||||
| 定義 | Property SheetsInNewWorkbook() As Long | ||||||||||
| ShowChartTipNamesプロパティ | |||||||||||
| 説明 | グラフにヒント名を表示するかどうかを設定/取得(Trueの場合、表示する(既定値)) | ||||||||||
| 定義 | Property ShowChartTipNames() As Boolean | ||||||||||
| ShowChartTipValuesプロパティ | |||||||||||
| 説明 | グラフにヒント値を表示するかどうかを設定/取得(Trueの場合、表示する(既定値)) | ||||||||||
| 定義 | Property ShowChartTipValues() As Boolean | ||||||||||
| ShowDevToolsプロパティ | |||||||||||
| 説明 | リボンに[開発]タブを表示するかどうかを設定/取得(Trueの場合、表示する) | ||||||||||
| 定義 | Property ShowDevTools() As Boolean | ||||||||||
| ShowMenuFloatiesプロパティ | |||||||||||
| 説明 | ブックウィンドウ内で右クリックした時に[ミニツールバー]を表示するかどうかを設定/取得(Trueの場合、表示する) | ||||||||||
| 定義 | Property ShowMenuFloaties() As Boolean | ||||||||||
| ShowQuickAnalysisプロパティ | |||||||||||
| 説明 | 選択時にクイック分析のコンテキストユーザインターフェイスを表示するかどうかを設定/取得(Trueの場合、表示する) | ||||||||||
| 定義 | Property ShowQuickAnalysis() As Boolean | ||||||||||
| ShowSelectionFloatiesプロパティ | |||||||||||
| 説明 | 文字列を選択した時に[ミニツールバー]を表示するかどうかを設定/取得(Trueの場合、表示する) | ||||||||||
| 定義 | Property ShowSelectionFloaties() As Boolean | ||||||||||
| ShowStartupDialogプロパティ | |||||||||||
| 説明 | [新しいブック]作業ウィンドウを表示するかどうかを設定/取得(Trueの場合、表示する(既定値)) | ||||||||||
| 定義 | Property ShowStartupDialog() As Boolean | ||||||||||
| ShowToolTipsプロパティ | |||||||||||
| 説明 | ツールバーのボタン名を表示するかどうかを設定/取得(Trueの場合、表示する) | ||||||||||
| 定義 | Property ShowToolTips() As Boolean | ||||||||||
| SmartArtColorsプロパティ(読み取り専用) | |||||||||||
| 説明 | 現在読み込まれているSmartArtグラフィックの色スタイルを表すSmartArtColorsコレクションを取得 | ||||||||||
| 定義 | Property SmartArtColors() As SmartArtColors | ||||||||||
| SmartArtLayoutsプロパティ(読み取り専用) | |||||||||||
| 説明 | 現在読み込まれているSmartArtグラフィックのレイアウトを表すSmartArtLayoutsコレクションを取得 | ||||||||||
| 定義 | Property SmartArtLayouts() As SmartArtLayouts | ||||||||||
| SmartArtQuickStylesプロパティ(読み取り専用) | |||||||||||
| 説明 | 現在読み込まれているSmartArtグラフィックのクイックスタイルを表すSmartArtQuickStylesコレクションを取得 | ||||||||||
| 定義 | Property SmartArtQuickStyles() As SmartArtQuickStyles | ||||||||||
| Speechプロパティ(読み取り専用) | |||||||||||
| 説明 | 音声機能を表すSpeechオブジェクトを取得 | ||||||||||
| 定義 | Property Speech() As Speech | ||||||||||
| SpellingOptionsプロパティ(読み取り専用) | |||||||||||
| 説明 | スペルチェックのオプションを表すSpellingOptionsオブジェクトを取得 | ||||||||||
| 定義 | Property SpellingOptions() As SpellingOptions | ||||||||||
| StandardFontプロパティ | |||||||||||
| 説明 | 標準フォント名を設定/取得 | ||||||||||
| 定義 | Property StandardFont() As String | ||||||||||
| StandardFontSizeプロパティ | |||||||||||
| 説明 | 標準フォントサイズを設定/取得 | ||||||||||
| 定義 | Property StandardFontSize() As Double | ||||||||||
| StartupPathプロパティ(読み取り専用) | |||||||||||
| 説明 | 起動フォルダの完全パスを取得 | ||||||||||
| 定義 | Property StartupPath() As String | ||||||||||
| StatusBarプロパティ | |||||||||||
| 説明 | ステータスバーのテキストを設定/取得(テキストを復元したい場合、Falseを設定) | ||||||||||
| 定義 | Property StatusBar() As Variant | ||||||||||
| TemplatesPathプロパティ(読み取り専用) | |||||||||||
| 説明 | テンプレートが保存されているローカルパスを取得 | ||||||||||
| 定義 | Property TemplatesPath() As String | ||||||||||
| ThisCellプロパティ(読み取り専用) | |||||||||||
| 説明 | ユーザ定義関数が入力されたセルをRangeオブジェクトで取得 | ||||||||||
| 定義 | Property ThisCell() As Range | ||||||||||
| ThisWorkbookプロパティ(読み取り専用) | |||||||||||
| 説明 | 現在マクロコードが実行されているブックを表すWorkbookオブジェクトを取得 | ||||||||||
| 定義 | Property ThisWorkbook() As Workbook | ||||||||||
| ThousandsSeparatorプロパティ | |||||||||||
| 説明 | 桁区切り記号として使用する文字を設定/取得 | ||||||||||
| 定義 | Property ThousandsSeparator() As String | ||||||||||
| Topプロパティ | |||||||||||
| 説明 | 画面の上端からExcelウィンドウの上端までの距離をポイント単位で設定/取得 | ||||||||||
| 定義 | Property Top() As Double | ||||||||||
| TransitionMenuKeyプロパティ | |||||||||||
| 説明 | 代替キーまたはヘルプキーを設定/取得 | ||||||||||
| 定義 | Property TransitionMenuKey() As String | ||||||||||
| TransitionMenuKeyActionプロパティ | |||||||||||
| 説明 | メニューキーが押された時の動作を設定/取得
(※)設定/取得が可能な値は、以下の通り。 |
||||||||||
| 定義 | Property TransitionMenuKeyAction() As Long | ||||||||||
| TransitionNavigKeysプロパティ | |||||||||||
| 説明 | Lotus 1-2-3形式のキー操作を有効にするかどうかを設定/取得(Trueの場合、有効) | ||||||||||
| 定義 | Property TransitionNavigKeys() As Boolean | ||||||||||
| UsableHeightプロパティ(読み取り専用) | |||||||||||
| 説明 | アプリケーションウィンドウ領域内で使用可能な高さをポイント単位で取得 | ||||||||||
| 定義 | Property UsableHeight() As Double | ||||||||||
| UsableWidthプロパティ(読み取り専用) | |||||||||||
| 説明 | アプリケーションウィンドウ領域内で使用可能な幅をポイント単位で取得 | ||||||||||
| 定義 | Property UsableWidth() As Double | ||||||||||
| UseClusterConnectorプロパティ | |||||||||||
| 説明 | XLLアドインのユーザ定義関数を計算クラスタで実行できるようにするかどうかを設定/取得(Trueの場合、実行できる) | ||||||||||
| 定義 | Property UseClusterConnector() As Boolean | ||||||||||
| UsedObjectsプロパティ(読み取り専用) | |||||||||||
| 説明 | ブック内で割り当てられたオブジェクトを表すUsedObjectsコレクションを取得 | ||||||||||
| 定義 | Property UsedObjects() As UsedObjects | ||||||||||
| UserControlプロパティ | |||||||||||
| 説明 | アプリケーションが表示されている(ユーザによって作成または起動された)かどうかを設定/取得(Trueの場合、表示されている) | ||||||||||
| 定義 | Property UserControl() As Boolean | ||||||||||
| UserLibraryPathプロパティ(読み取り専用) | |||||||||||
| 説明 | COMアドインがインストールされているパスを設定/取得 | ||||||||||
| 定義 | Property UserLibraryPath() As String | ||||||||||
| UserNameプロパティ | |||||||||||
| 説明 | 現在のユーザ名を設定/取得 | ||||||||||
| 定義 | Property UserName() As String | ||||||||||
| UseSystemSeparatorsプロパティ | |||||||||||
| 説明 | 数値を表示する際にシステムの桁区切り記号を使用するかどうかを設定/取得(Trueの場合、使用する(既定値)) | ||||||||||
| 定義 | Property UseSystemSeparators() As Boolean | ||||||||||
| Valueプロパティ(読み取り専用) | |||||||||||
| 説明 | Excelのアプリケーション名を取得 | ||||||||||
| 定義 | Property Value() As String | ||||||||||
| VBEプロパティ(読み取り専用) | |||||||||||
| 説明 | Visual Basic Editorを表すVBEオブジェクトを取得 | ||||||||||
| 定義 | Property VBE() As VBE | ||||||||||
| Versionプロパティ(読み取り専用) | |||||||||||
| 説明 | Excelのバージョン番号を取得 | ||||||||||
| 定義 | Property Version() As String | ||||||||||
| Visibleプロパティ | |||||||||||
| 説明 | オブジェクトを表示するかどうかを設定/取得(Trueの場合、表示する) | ||||||||||
| 定義 | Property Visible() As Boolean | ||||||||||
| WarnOnFunctionNameConflictプロパティ | |||||||||||
| 説明 | 開発者が既存の関数名を使用して新しい関数を作成しようとした場合に警告するかどうかを設定/取得(Trueの場合、警告する) | ||||||||||
| 定義 | Property WarnOnFunctionNameConflict() As Boolean | ||||||||||
| Watchesプロパティ(読み取り専用) | |||||||||||
| 説明 | ワークシートの再計算時に追跡される範囲を表すWatchesオブジェクトを取得 | ||||||||||
| 定義 | Property Watches() As Watches | ||||||||||
| Widthプロパティ | |||||||||||
| 説明 | アプリケーションウィンドウの左端から右端までの距離をポイント単位で設定/取得 | ||||||||||
| 定義 | Property Width() As Double | ||||||||||
| Windowsプロパティ(読み取り専用) | |||||||||||
| 説明 | 全てのブックのウィンドウを表すWindowsコレクションを取得 | ||||||||||
| 定義 | Property Windows() As Windows | ||||||||||
| WindowsForPensプロパティ(読み取り専用) | |||||||||||
| 説明 | Windows for Pen Computingを実行中かどうかを設定/取得(Trueの場合、実行中) | ||||||||||
| 定義 | Property WindowsForPens() As Boolean | ||||||||||
| WindowStateプロパティ | |||||||||||
| 説明 | ウィンドウの状態を設定/取得
(※)XlWindowState列挙体の値は、以下の通り。 |
||||||||||
| 定義 | Property WindowState() As XlWindowState | ||||||||||
| Workbooksプロパティ(読み取り専用) | |||||||||||
| 説明 | 開いている全てのブックを表すWorkbooksコレクションを取得
⇒詳細は、Excel VBAの覚え書(Workbooksコレクション、Workbookオブジェクト編)を参照して下さい。 |
||||||||||
| 定義 | Property Workbooks() As Workbooks | ||||||||||
| WorksheetFunctionプロパティ(読み取り専用) | |||||||||||
| 説明 | Visual Basicから呼び出すことができるExcelワークシート関数のコンテナを表すWorksheetFunctionオブジェクトを取得 | ||||||||||
| 定義 | Property WorksheetFunction() As WorksheetFunction | ||||||||||
| Worksheetsプロパティ(読み取り専用) | |||||||||||
| 説明 | アクティブなブック内の全てのワークシートを表すSheetsコレクションを取得 | ||||||||||
| 定義 | Property Worksheets() As Sheets | ||||||||||
XlFileFormat列挙体
| 名前 | 値 | 説明 | 拡張子 | |
|---|---|---|---|---|
| XlFileFormat列挙体 | ||||
| xlAddIn | 18 | Excel 97-2003アドイン | xla | |
| xlAddIn8 | 18 | Excel 97-2003アドイン | xla | |
| xlCSV | 6 | CSV | csv | |
| xlCSVMac | 22 | Macintosh CSV | csv | |
| xlCSVMSDOS | 24 | MSDOS CSV | csv | |
| xlCSVUTF8 | 62 | UTF8 CSV | csv | |
| xlCSVWindows | 23 | Windows CSV | csv | |
| xlCurrentPlatformText | -4158 | 現在のプラットフォームのテキスト | txt | |
| xlDBF2 | 7 | Dbase 2 | dbf | |
| xlDBF3 | 8 | Dbase 3 | dbf | |
| xlDBF4 | 11 | Dbase 4 | dbf | |
| xlDIF | 9 | DIF | dif | |
| xlExcel12 | 50 | Excelバイナリブック | xlsb | |
| xlExcel2 | 16 | Excel 2.0(1987) | xls | |
| xlExcel2FarEast | 27 | Excel 2.0 far east(1987) | xls | |
| xlExcel3 | 29 | Excel 3.0(1990) | xls | |
| xlExcel4 | 33 | Excel 4.0(1992) | xls | |
| xlExcel4Workbook | 35 | Excel 4.0ブック(1992) | xlw | |
| xlExcel5 | 39 | Excel 5.0(1994) | xls | |
| xlExcel7 | 39 | Excel 95(7.0) | xls | |
| xlExcel8 | 56 | Excel 97-2003ブック | xls | |
| xlExcel9795 | 43 | Excel 95,97 | xls | |
| xlHtml | 44 | HTML | htm,html | |
| xlIntlAddIn | 26 | International Add-In | なし | |
| xlIntlMacro | 25 | International Macro | なし | |
| xlOpenDocumentSpreadsheet | 60 | OpenDocumentスプレッドシート | ods | |
| xlOpenXMLAddIn | 55 | XMLアドインを開く | xlam | |
| xlOpenXMLStrictWorkbook | 61 | XMLファイルを厳密に開く | xlsx | |
| xlOpenXMLTemplate | 54 | XMLテンプレートを開く | xltx | |
| xlOpenXMLTemplateMacroEnabled | 53 | マクロを有効にしたXMLテンプレートを開く | xltm | |
| xlOpenXMLWorkbook | 51 | XMLブックを開く | xlsx | |
| xlOpenXMLWorkbookMacroEnabled | 52 | マクロを有効にしたXMLブックを開く | xlsm | |
| xlSYLK | 2 | シンボリックリンク | slk | |
| xlTemplate | 17 | Excelテンプレート | xlt | |
| xlTemplate8 | 17 | テンプレート 8 | xlt | |
| xlTextMac | 19 | Macintoshテキスト | txt | |
| xlTextMSDOS | 21 | MSDOSテキスト | txt | |
| xlTextPrinter | 36 | プリンタテキスト | prn | |
| xlTextWindows | 20 | Windowsテキスト | txt | |
| xlUnicodeText | 42 | Unicodeテキスト | txt | |
| xlWebArchive | 45 | Webアーカイブ | mht,mhtml | |
| xlWJ2WD1 | 14 | Japanese 1-2-3 | wj2 | |
| xlWJ3 | 40 | Japanese 1-2-3 | wj3 | |
| xlWJ3FJ3 | 41 | Japanese 1-2-3 | wj3 | |
| xlWK1 | 5 | Lotus 1-2-3 | wk1 | |
| xlWK1ALL | 31 | Lotus 1-2-3 | wk1 | |
| xlWK1FMT | 30 | Lotus 1-2-3 | wk1 | |
| xlWK3 | 15 | Lotus 1-2-3 | WK3 | |
| xlWK3FM3 | 32 | Lotus 1-2-3 | WK3 | |
| xlWK4 | 38 | Lotus 1-2-3 | wk4 | |
| xlWKS | 4 | Lotus 1-2-3 | wks | |
| xlWorkbookDefault | 51 | ブックの既定 | xlsx | |
| xlWorkbookNormal | -4143 | ブックの標準 | xls | |
| xlWorks2FarEast | 28 | Works 2.0 far east | wks | |
| xlWQ1 | 34 | Quattro Pro | wq1 | |
| xlXMLSpreadsheet | 46 | XMLスプレッドシート | xml | |
出版社:インプレス
発売日:2022/3/23
単行本(ソフトカバー):A5判/912ページ
出版社:技術評論社
発売日:2021/1/9
単行本(ソフトカバー):A5判/800ページ
出版社:技術評論社
発売日:2019/11/25
単行本(ソフトカバー):B5変形判/576ページ





ディスカッション
コメント一覧
まだ、コメントがありません