1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Powershell 5.1のコードを書くための基本スターターキット

Last updated at Posted at 2020-11-10

#Powershell Coreはとりあえず無視
とりえあず見た目がなんかどぎついうえにさらにデータがないので。。。
とりあえず64bitと32bit両方入れています。
#今回のスターターの目的
普通のPowershellの使い方というのもよくわかりませんが。。。
とりあえずVBScriptのように使い、cmdのようにファイルを操作するということでしょう。
なので
Officeを起動する。
とくにデータベースを作る。
ファイルを操作する。
という基本のためにOfficeを呼び出せるようにします。
またUsingを使うことで省略して入力できるようにします。
Visual Basicを呼び出します。
vbCrLfはありませんが、その代わりに$vbCrLfを登録します。
この大本のExecutionPolicyを注記します。
##スターターはスクリプトのある場所に展開します。
スターターは最初にスクリプトがある場所にカレントを移動させます。
このとき普通に書いてある、
スクリプトフォルダーの取得
にあるような
[String]$PATH = Split-Path $MyInvocation.MyCommand.Path -Parent
[String]$PATH = $PSScriptRoot
はPowershell_iseでは使えません。
そこで、このスターターキットはiseでもPowershellでもスクリプトが保存されていさえすればスクリプトの場所に移動できるようになっています。
どこにも書いていなかったのですが、公式の頭の悪すぎる翻訳文を読むと保存している場合には
#Powershell5
##ISEの場所
###64bit
%WIndir%\system32\WindowsPowerShell\v1.0\powershell_ise.exe
###32bit
%WIndir%\SysWOW64\WindowsPowerShell\v1.0\powershell_ise.exe

32bitはDAO3.6など便利な機能がたくさん使えます。むしろ64bitの方が使えない感じかなあ。
たとえばExcelが64bitでも32bitから起動できます。
このため、使えるカードが32bitの方が多いのです。

##Powershellの場所
これはiseと同じですね。
###64bit
%WIndir%\system32\WindowsPowerShell\v1.0\powershell.exe
###32bit
%WIndir%\SysWOW64\WindowsPowerShell\v1.0\powershell.exe
また、6.0や7.0は
###7.x
####64bit
'%Programfiles%\PowerShell\7\pwsh.exe'
####32bit
'%Programfiles(x86)%\PowerShell\7\pwsh.exe'
###6.x
####64bit
'%Programfiles%\PowerShell\6\pwsh.exe'
####32bit
'%Programfiles(x86)%\PowerShell\6\pwsh.exe'
##場所の使いみち
これはbatファイルを組むときに使います。
バッチファイルにて64bitか32bitを判定し、Program Files配下にファイルをコピーしたい。

#コードの構造やポイント
詳細は後述するとして、まずコードを提示します
##64bitではなく32bit用
Dao 3.6を使っているため、64bitではエラーになります。

Accessが動かない

原因が不明ですが、Accessが起動しません。

Powershellは上から下に読んでいくだけであまり下から読むみたいなことはしません。
このため、ユーザー定義関数などはメインより先に書かないとエラーになります。
下のサンプルの場合、アセンブリの下でしょう。
##なぜかAccessが動かない

##using namespaceを書いても省略しない
このスターターのサンプルコードは省略できるのにしていません。
ISEでTABを押すと書き換わってしまいます。
なぜこんなことをしているのかというとISEでは選択した行だけ実行する(F8)という機能がありますが、省略しているとエラーになるのです。
つまり、行単位ではUsingが効かなくなるわけです。このため、サンプルとしてはUsingを書きつつ、省略しないという半端な書き方になりますが、書いているときは行単位で検証できるため、便利です。まあこういうことをやっているからコードがきれいにならないわけですが。

##定数許容量を80000まで上げる
なぜかというと、このあとに定数表があります。
これを入れる位置はユーザー定義関数の上になります。
しかしデフォルトではすべての定数を入れるとエラーになります。

コード

#Set-ExecutionPolicy RemoteSigned -Scope Process -Force
# Using namepace - clear-variable- Setteings( Encoding, vbCrLf 's
using namespace System;
using namespace System.Text;
using namespace System.Collections;
using namespace System.Configuration.Assemblies;
using namespace System.Diagnostics;
using namespace System.Collections.Generic;
using namespace System.Management.Automation
using namespace System.Data.OleDb;
using namespace System.Data.Odbc;
using namespace System.Data.Sql;
using namespace System.Drawing.Imaging;
using namespace System.Drawing.Text:
using namespace System.EnterpriseServices;
using namespace System.Globalization;
using namespace System.IO;
using namespace System.Linq;
using namespace System.Numerics;
using namespace System.Reflection;
using namespace System.Reflection.Emit;
using namespace System.Runtime.InteropServices;
using namespace System.Speach;
using namespace System.Timers;
using namespace System.Threading;
using namespace System.Threading.Tasks;
using namespace System.Xml;
using namespace System.Xml.Schema;
using namespace System.Xml.XPath
using namespace System.Web;
using namespace System.Windows.Interop;
using namespace System.Windows.Forms;
using namespace Shell32;
using namespace Microsoft;
using namespace Microsoft.VisualBasic;
using namespace Microsoft.Vbe.Interop;
using namespace Microsoft.vbe.Interop.forms;
using namespace Microsoft.Office.Core;
using namespace Microsoft.Office.InterOp.Access.ado;
using namespace Microsoft.Office.Interop.Access;
using namespace Microsoft.Office.Interop.Excel;
using namespace Microsoft.Office.Interop.Word;
using namespace Microsoft.Office.Interop.Powerpoint;
using namespace Microsoft.Office.Interop.Publisher;
using namespace Microsoft.Office.Interop.Outlook;
using namespace Microsoft.Office.OutlookViewCtl;
using namespace Microsoft.office.interop.smarttag;
using namespace Microsoft.Win32;
using namespace Windows.System.Power.Diagnostics;
using namespace Windows.Web;
using namespace Windows.Web.Http;
# 変数消去
Try{Get-Variable | Clear-Variable -ErrorAction SilentlyContinue  }catch{$error.Clear()}
# 履歴-画面クリア
Clear-History;
cls;
# Start 開始時刻の記録
[datetime]$stdt = get-date ; Write-Host "開始時刻 Time of started is ${stdt}."  ' ' $stdt.ToString('yyyy/MM/dd hh:mm:ss.000') # 変数をダブルクォーテーションで包むと展開する。さらに{}で囲むと半角スペースがつかない。
[string]$strstdt = $stdt.ToString('yyyyMMddhhmmss')

# Seetings  
$MaximumVariableCount = 8000
$ErrorActionPreference="Stop" # 'ScilentContinue' 'Continue'
Set-StrictMode -Version 1
Set-StrictMode -Off
# 基本定数
$vbTab = "`t" ; $vbCrLf = "`r`n" ; $Beep = "`a" ; $vbCr = "`r" ; $vbLF = "`f" ;  $vbNullString = "`0"
#曜日 [DayOfWeek]:: でTab [DayOfWeek]::Friday
###Msgbox Constants Default $vbOkOnly = 0
$vbOKOnly=0 ; $vbOkCancel = 1 ; $vbAbortRetryIgnore = 2 ; $vbYesNoCancel=3 ; $vbYesNo =4 ; $vbRetryCancel = 5 ; $vbCritical = 16 ; $vbQuestion = 32;
$vbExclamation = 48; $vbInformation = 64;  $vbDefaultButton1 = 0 ; $vbDefaultButton2 = 256 ; $vbDefaultButton3 = 512; $vbDefaultButton4 = 768 ; $vbApplicationModal = 0 ; $vbSystemModal = 4096 ; 
###Return Value Constants
$vbOK = 1 ; $vbCancel = 2 ; $vbAbort = 3 ; $vbRetry = 4 ; $vbIgnore = 5 ; $vbYes = 6 ; $vbNo = 7
# Microsoft.VisualBasicアセンブリを有効化
[void][System.Reflection.Assembly]::Load("Microsoft.VisualBasic, Version=8.0.0.0, Culture=Neutral, PublicKeyToken=b03f5f7f11d50a3a")
[void][System.Reflection.Assembly]::Load("System.Windows.Forms, Version=2.0.0.0, Culture=Neutral, PublicKeyToken=b77a5c561934e089")
[void][System.Reflection.Assembly]::Load("mscorlib, Version=2.0.0.0, Culture=Neutral, PublicKeyToken=b77a5c561934e089")
[void][System.Reflection.Assembly]::Load("ADODB, Version=7.0.3300.0, Culture=Neutral, PublicKeyToken=b03f5f7f11d50a3a")
[void][System.Reflection.Assembly]::Load("Microsoft.JScript, Version=8.0.0.0, Culture=Neutral, PublicKeyToken=b03f5f7f11d50a3a")
[void][System.Reflection.Assembly]::Load("Microsoft.Office.Interop.Access, Version=15.0.0.0, Culture=Neutral, PublicKeyToken=71e9bce111e9429c")
[void][System.Reflection.Assembly]::Load("Microsoft.Office.Interop.Access.Dao, Version=15.0.0.0, Culture=Neutral, PublicKeyToken=71e9bce111e9429c")
[void][System.Reflection.Assembly]::Load("Microsoft.Office.Interop.Excel, Version=15.0.0.0, Culture=Neutral, PublicKeyToken=71e9bce111e9429c")
[void][System.Reflection.Assembly]::Load("Microsoft.Office.Interop.Graph, Version=15.0.0.0, Culture=Neutral, PublicKeyToken=71e9bce111e9429c")
[void][System.Reflection.Assembly]::Load("Microsoft.Office.Interop.Outlook, Version=15.0.0.0, Culture=Neutral, PublicKeyToken=71e9bce111e9429c")
[void][System.Reflection.Assembly]::Load("Microsoft.Office.Interop.OutlookViewCtl, Version=15.0.0.0, Culture=Neutral, PublicKeyToken=71e9bce111e9429c")
[void][System.Reflection.Assembly]::Load("Microsoft.Office.Interop.PowerPoint, Version=15.0.0.0, Culture=Neutral, PublicKeyToken=71e9bce111e9429c")
[void][System.Reflection.Assembly]::Load("Microsoft.Office.Interop.Publisher, Version=15.0.0.0, Culture=Neutral, PublicKeyToken=71e9bce111e9429c")
[void][System.Reflection.Assembly]::Load("Microsoft.Office.Interop.Word, Version=15.0.0.0, Culture=Neutral, PublicKeyToken=71e9bce111e9429c")
[void][System.Reflection.Assembly]::Load("System.Speech, Version=3.0.0.0, Culture=Neutral, PublicKeyToken=31bf3856ad364e35")
@(
    "C:\Windows\assembly\GAC_MSIL\Microsoft.VisualBasic\*\Microsoft.VisualBasic.dll"
    "C:\Windows\assembly\GAC_MSIL\office\*\OFFICE.DLL"
    "C:\Windows\assembly\GAC_MSIL\Microsoft.Vbe.Interop.Forms\*\Microsoft.Vbe.Interop.Forms.dll"
    "C:\Windows\assembly\GAC_MSIL\Microsoft.Office.Interop.Access\*\Microsoft.Office.Interop.Access.dll"
    "C:\Windows\assembly\GAC_MSIL\Microsoft.Office.Interop.Graph\*\Microsoft.Office.Interop.Graph.dll"
    "C:\Windows\assembly\GAC_MSIL\Microsoft.Vbe.Interop\*\Microsoft.Vbe.Interop.dll"
    "C:\Windows\assembly\GAC_MSIL\Microsoft.Office.Interop.Access.Dao\*\Microsoft.Office.Interop.Access.Dao.dll"
    "C:\Windows\assembly\GAC_MSIL\Microsoft.Office.Interop.Excel\*\Microsoft.Office.Interop.Excel.dll"
    "C:\Windows\assembly\GAC_MSIL\Microsoft.Office.Interop.Word\*\Microsoft.Office.Interop.Word.dll"
).ForEach{
    Add-Type -path $_
}
### ユーザー定義関数(UDF User Difinition Function)は概ね個々から下に記述 ###

### UDF をここより上に記述する ###
#MsgBox

#InputBoxで値取得
$INPUT =[Microsoft.VisualBasic.Interaction]::InputBox("Message String", 'TitleString','String Default Responce' )   # 文中の改行は `n 例: "今日は `nいい天気" https://letspowershell.blogspot.com/2015/06/powershellinputbox.html
### MsgBox YesNoCancel
if([System.Windows.Forms.MessageBox]::Show('Click Cancel to Exit','Shutdown','YesNoCancel') -eq 'Cancel'){ write-host 'cancel'} #https://social.technet.microsoft.com/Forums/lync/en-US/6cf08a2e-9723-450a-beaa-4d4b6a808c50/how-to-get-script-to-stop-if-i-press-cancel?forum=winserverpowershell
$SelectResult = [System.Windows.Forms.MessageBox]::Show('Click Cancel to Exit','Shutdown','YesNoCancel')
Write-Host $SelectResult # この場合は Yes No Cancelなど文字列が返ってくる。 ほかOKCacnelもできる 上記のような[void]のような命令もいらない。

# 実行しているスクリプトのパスの取得と移動
# Split-Pathはpsiseでは取得できないため次のようにする また[String]を指定していないため $path -eq ""ではなく $path -eq $null
$PATH = Split-Path $MyInvocation.MyCommand.Path -Parent
If($PATH -eq $null){
if($psISE.CurrentFile.Save() -eq $false){Exit;}Else{$PATH =(get-item $psISE.CurrentFile.FullPath).DirectoryName}
}
Sl $PATH #Explorerで開く または Invoke-Item $PATH

# コンソールの記録開始
Start-Transcript (Join-path $PATH "Log${strstdt}.log")
# Com Object
$Dbe = New-Object -ComObject "Dao.DBEngine.36" ;
$vbReg = New-Object -ComObject "VBScript.RegExp" ;
$xApp = New-Object -ComObject "Excel.Application" ; $xApp.visible = $true ;
#$aApp = New-Object -ComObject Access.Application ; $aApp.visible = $true ;
$oApp = New-Object -ComObject "Outlook.Application" ; $oApp.visible = $true ;
$wApp = New-Object -ComObject "Word.Application" ; $wApp.visible = $true ;
$pApp = New-Object -ComObject Powerpoint.Application ; $pApp.Visible =[Microsoft.Office.Core.MsoTriState]::msoTrue
$pbApp = New-Object -comobject Publisher.Application ;  #$pbApp.visible = $true;ということはできない。 $pbApp.Open('C:\Test\testcard.pub')
#$ie = New-Object -ComObject InternetExplorer.Application ; $ie.Navigate("google.com")  ; $ie.visible = $true
$FSO = New-Object -ComObject "Scripting.FileSystemObject" ;
$CAT = New-Object -ComObject "ADOX.Catalog" ;
$WSH = New-Object -ComObject "WScript.Shell" ;
$WSN = New-Object -ComObject "WScript.Network" ;
$SHL = New-Object -ComObject 'Shell.Application';
$Dic = New-Object -ComObject "Scripting.Dictionary" ; 
$aSr = New-Object -ComObject "ADODB.Stream" ; 
$aCmd = New-Object -ComObject "ADODB.Command" ; 
$aCn = New-Object -ComObject "ADODB.Connection" ; 
$aRS = New-Object -ComObject "ADODB.RecordSet" ; 
Try{
$wrk.Close()
$xApp.quit();$xApp = $null;[void][System.Runtime.InteropServices.Marshal]::ReleaseComObject($xApp) ; Remove-Variable xApp;
$aApp.Quit();$aApp = $null;[void][System.Runtime.InteropServices.Marshal]::ReleaseComObject($aApp) ; Remove-Variable aApp;
$oApp.Quit();$oApp = $null;[void][System.Runtime.InteropServices.Marshal]::ReleaseComObject($oApp) ; Remove-Variable oApp;
$wApp.Quit();$wApp = $null;[void][System.Runtime.InteropServices.Marshal]::ReleaseComObject($wApp) ; Remove-Variable wApp;
$pApp.Quit();$pApp = $null;[void][System.Runtime.InteropServices.Marshal]::ReleaseComObject($pApp) ; Remove-Variable pApp;
$pbApp.Quit();$pbApp = $null;[void][System.Runtime.InteropServices.Marshal]::ReleaseComObject($pbApp) ; Remove-Variable pbApp;
$ie.Quit();[void][System.Runtime.Interopservices.Marshal]::ReleaseComObject($ie) ; Remove-Variable ie ;
[void][System.Runtime.InteropServices.Marshal]::ReleaseComObject($WSN)
[void][System.Runtime.InteropServices.Marshal]::ReleaseComObject($Dbe)
[void][System.Runtime.InteropServices.Marshal]::ReleaseComObject($cat)
[void][System.Runtime.InteropServices.Marshal]::ReleaseComObject($WSH)
[void][System.Runtime.InteropServices.Marshal]::ReleaseComObject($SHL)
[void][System.Runtime.InteropServices.Marshal]::ReleaseComObject($aRs)
[void][System.Runtime.InteropServices.Marshal]::ReleaseComObject($aCn)
[void][System.Runtime.InteropServices.Marshal]::ReleaseComObject($SapiVoice) ; Remove-Variable SapiVoice;
$speak.Dispose()  ; [void][System.Runtime.InteropServices.Marshal]::ReleaseComObject($speak) ; Remove-Variable Speak ; # $speak.Dispose() は必ず書く
$aCm = $null
[GC]::Collect()
Remove-Variable dbe, fso , aRs ,aCn, aCm, cat, SHL
}Catch{
$error.Clear()
}

$EndDt = Get-Date
Write-host (New-TimeSpan  $stdt -End $EndDt ).TotalSeconds
Stop-Transcript

##Assemblyの場所
[void][System.Reflection.Assembly]::Load("Microsoft.VisualBasic, Version=8.0.0.0, Culture=Neutral, PublicKeyToken=b03f5f7f11d50a3a")
または
[System.Reflection.Assembly]::Load("Microsoft.VisualBasic, Version=8.0.0.0, Culture=Neutral, PublicKeyToken=b03f5f7f11d50a3a") | Out-Null

こうしたLoadの後ろの名前、Version,Culture,公開キーはどうやって得られるのか。
%Windir%\assembly\
があります。この中のものが使えるようです。
プロパティを見ると記載されています。
SysWow64には存在していません。
なので32bit Powershellでもここの名前、Version,Culture,公開キーを使います。

##余談:VBscriptの起動
Cscript //Nologo ...vbs
ということで起動できます。Wscriptでもいいでしょう。
なので、CMD.EXEからCscriptではなくて、Powsershellからでも起動できます。

##余談:CMD-Powershell-Cmdの切り替え
iseではできませんが、
Cmdを開きます
Powershellと入力します
Powershellになります
Cmdを入れます。
CMDに戻ります
ということができます。

##読み上げ機能について
関連している部分は以下のとおりです。
https://gist.github.com/lazywinadmin/51619a0e47f4c8e7a8b7
Add-Typeを書き換えています。gistは基本的な書き方例です。
https://learn-powershell.net/2013/12/04/give-powershell-a-voice-using-the-speechsynthesizer-class/
###Sapi.VoiceのVoice Changeは Powershell.Core 7.1では使えない
Sapi.VoiceのVoice Changeは Powershell.Core 7.1では使えない
https://stackoverflow.com/questions/61442080/how-to-change-the-voice-used-for-sapi-spvoice
こういうのは本当にダメ。チャットボットなんておもちゃをつくる暇があったら、これがちゃんと動くようにすべき。
この機能は身体障害者とかが使いますし、目が疲れてきたときに読み合わせで使います。
こうした機能で使える使えないがあってはならないことです。命に関わる部分ですから。
マイクロソフトはアクセシビリティ周りでこういうことを平気でやる。Office2010のときも思いっきり削った前科があり、この程度ならいいだろうという意識の低さが溢れている。

https://srad.jp/comment/2943598 Sapi Voice
スラドはふざけているが、Sapi Voice の日本語の数少ない実例。

[void][System.Reflection.Assembly]::Load("System.Speech, Version=3.0.0.0, Culture=Neutral, PublicKeyToken=31bf3856ad364e35")

# gistは基本的な書き方例
$speak = New-Object System.Speech.Synthesis.SpeechSynthesizer
$speak.Dispose() # 必ず書く

$SapiVoice = New-Object -com SAPI.Spvoice
$SapiVoice.Speak( "よい子は早く寝ろ",1) | out-null

Sound Windows Media Player

Sound Beep

PowerShell – ビープ音でドレミファソラシドを演奏する
https://www.itlab51.com/?p=6232
[Console]::Beep(440,500) Hz milliseconds Win32 ApiのBeep と同じ
##Webについて
Webに接続する場合は色々あるのですが、基本定数の下にこれを入れましょう
今回入れていないのはWebだとOutputencodingがShiftJisではうまくかないことがあるためです。

# https://tech.guitarrapc.com/entry/2013/03/30/020311
# https://www.vwnet.jp/Windows/PowerShell/CharCode.htm Outputencoding

Try {
[Net.ServicePointManager]::SecurityProtocol = [Net.ServicePointManager]::SecurityProtocol -bor [Net.SecurityProtocolType]::Tls12
[Net.ServicePointManager]::SecurityProtocol = [Net.ServicePointManager]::SecurityProtocol -bor [Net.SecurityProtocolType]::Tls13
}catch{
Write-host $Error
}
$res = Invoke-WebRequest $URLString
[System.Text.Encoding]::Utf8.GetString( `
[System.Text.Encoding]::GetEncoding("ISO-8859-1").GetBytes($res.Content))

参考文献

##Powershellの使い方全般
公式 Powershell101
https://docs.microsoft.com/ja-jp/powershell/scripting/learn/ps101/00-introduction?view=powershell-7
気になるのはURLを見ると分かる通り、Powershell Coreである。
またMS公式というより人の著作である。

PowerShell 使い方メモ

Docs PowerShell スクリプトの作成 Windows PowerShell の開始
32 ビット版の Windows PowerShell を起動する
##Powershell Ise
Docs PowerShell スクリプトの作成 Windows PowerShell ISE
ISEにも5.0の新機能があるが大したことはない。それよりオブジェクトモデルが存在し、オブジェクトの階層
が存在する。上記のサンプルは32bit ISEで動作させることを目的としており、スクリプトのパスに移動するときに使用している。
もちろん、64bitでも動作する。しかし32bitのISEで動かすことを前提としたサンプルなど、ここ以外には存在しないであろう。
また、公式を見るより上記の使い方メモを見るほうが早そうだし有益だ。

Powershell In Depth

Set-StrictModeについてちょっとだけ詳しく説明してみる

##Office関連
【Powershell】Outlook,Excel,PowerPoint,Work,Access,IE,Explorerを起動しファイルを開き終了するサンプル PowerPointが要注意。またPublisherはDocumentを開かずにPubulisherだけ起動して表示するには上記のWindowを使う必要がある。当然PublsiherhはHome And Buisinessには入っていないので動かない。
PowerShellでADO経由でMS-Accessのデータを扱う

OfficeをCOM Object経由でPowershellから扱うときの面倒を少しマシにする

Windows あるいはVisual Basic

Powershellを始めよう InputBox
Powershellをはじめよう MessageBox
C# Cant't Get help microsoft interopt reference to work
Office プライマリ相互運用機能アセンブリ

Broweser HTML Internet

【Powershell】PowerShell で Google Chrome を起動するサンプルコード
Replacing Text in Microsoft Publisher Using Powershell

###変更履歴
####2020/11/10初出
####2020/11/11
$InputBox 訂正
Start-Trascript 日時文字列の変数が違っていたので修正
$Inputの式修正
####2020/11/11
Start-Transcript 訂正
####2021/05/15
using 追加
add-type セクション追加
参考リンクのURL抜けの訂正、新規リンク追加

ここから定数  列挙体の定義

#Ado 定数表
%commonprogramfiles%\system\ado\adovbs.incより定数を取り出してPowershell化した。
この中には Adox の文はないが、の

# ---- CursorTypeEnum Values ----
$adOpenForwardOnly = 0
$adOpenKeyset = 1
$adOpenDynamic = 2
$adOpenStatic = 3

# ---- CursorOptionEnum Values ----
$adHoldRecords = 0x00000100
$adMovePrevious = 0x00000200
$adAddNew = 0x01000400
$adDelete = 0x01000800
$adUpdate = 0x01008000
$adBookmark = 0x00002000
$adApproxPosition = 0x00004000
$adUpdateBatch = 0x00010000
$adResync = 0x00020000
$adNotify = 0x00040000
$adFind = 0x00080000
$adSeek = 0x00400000
$adIndex = 0x00800000

# ---- LockTypeEnum Values ----
$adLockReadOnly = 1
$adLockPessimistic = 2
$adLockOptimistic = 3
$adLockBatchOptimistic = 4

# ---- ExecuteOptionEnum Values ----
$adAsyncExecute = 0x00000010
$adAsyncFetch = 0x00000020
$adAsyncFetchNonBlocking = 0x00000040
$adExecuteNoRecords = 0x00000080
$adExecuteStream = 0x00000400

# ---- ConnectOptionEnum Values ----
$adAsyncConnect = 0x00000010

# ---- ObjectStateEnum Values ----
$adStateClosed = 0x00000000
$adStateOpen = 0x00000001
$adStateConnecting = 0x00000002
$adStateExecuting = 0x00000004
$adStateFetching = 0x00000008

# ---- CursorLocationEnum Values ----
$adUseServer = 2
$adUseClient = 3

# ---- DataTypeEnum Values ----
$adEmpty = 0
$adTinyInt = 16
$adSmallInt = 2
$adInteger = 3
$adBigInt = 20
$adUnsignedTinyInt = 17
$adUnsignedSmallInt = 18
$adUnsignedInt = 19
$adUnsignedBigInt = 21
$adSingle = 4
$adDouble = 5
$adCurrency = 6
$adDecimal = 14
$adNumeric = 131
$adBoolean = 11
$adError = 10
$adUserDefined = 132
$adVariant = 12
$adIDispatch = 9
$adIUnknown = 13
$adGUID = 72
$adDate = 7
$adDBDate = 133
$adDBTime = 134
$adDBTimeStamp = 135
$adBSTR = 8
$adChar = 129
$adVarChar = 200
$adLongVarChar = 201
$adWChar = 130
$adVarWChar = 202
$adLongVarWChar = 203
$adBinary = 128
$adVarBinary = 204
$adLongVarBinary = 205
$adChapter = 136
$adFileTime = 64
$adPropVariant = 138
$adVarNumeric = 139
$adArray = 0x2000

# ---- FieldAttributeEnum Values ----
$adFldMayDefer = 0x00000002
$adFldUpdatable = 0x00000004
$adFldUnknownUpdatable = 0x00000008
$adFldFixed = 0x00000010
$adFldIsNullable = 0x00000020
$adFldMayBeNull = 0x00000040
$adFldLong = 0x00000080
$adFldRowID = 0x00000100
$adFldRowVersion = 0x00000200
$adFldCacheDeferred = 0x00001000
$adFldIsChapter = 0x00002000
$adFldNegativeScale = 0x00004000
$adFldKeyColumn = 0x00008000
$adFldIsRowURL = 0x00010000
$adFldIsDefaultStream = 0x00020000
$adFldIsCollection = 0x00040000

# ---- EditModeEnum Values ----
$adEditNone = 0x0000
$adEditInProgress = 0x0001
$adEditAdd = 0x0002
$adEditDelete = 0x0004

# ---- RecordStatusEnum Values ----
$adRecOK = 0x0000000
$adRecNew = 0x0000001
$adRecModified = 0x0000002
$adRecDeleted = 0x0000004
$adRecUnmodified = 0x0000008
$adRecInvalid = 0x0000010
$adRecMultipleChanges = 0x0000040
$adRecPendingChanges = 0x0000080
$adRecCanceled = 0x0000100
$adRecCantRelease = 0x0000400
$adRecConcurrencyViolation = 0x0000800
$adRecIntegrityViolation = 0x0001000
$adRecMaxChangesExceeded = 0x0002000
$adRecObjectOpen = 0x0004000
$adRecOutOfMemory = 0x0008000
$adRecPermissionDenied = 0x0010000
$adRecSchemaViolation = 0x0020000
$adRecDBDeleted = 0x0040000

# ---- GetRowsOptionEnum Values ----
$adGetRowsRest = -1

# ---- PositionEnum Values ----
$adPosUnknown = -1
$adPosBOF = -2
$adPosEOF = -3

# ---- BookmarkEnum Values ----
$adBookmarkCurrent = 0
$adBookmarkFirst = 1
$adBookmarkLast = 2

# ---- MarshalOptionsEnum Values ----
$adMarshalAll = 0
$adMarshalModifiedOnly = 1

# ---- AffectEnum Values ----
$adAffectCurrent = 1
$adAffectGroup = 2
$adAffectAllChapters = 4

# ---- ResyncEnum Values ----
$adResyncUnderlyingValues = 1
$adResyncAllValues = 2

# ---- CompareEnum Values ----
$adCompareLessThan = 0
$adCompareEqual = 1
$adCompareGreaterThan = 2
$adCompareNotEqual = 3
$adCompareNotComparable = 4

# ---- FilterGroupEnum Values ----
$adFilterNone = 0
$adFilterPendingRecords = 1
$adFilterAffectedRecords = 2
$adFilterFetchedRecords = 3
$adFilterConflictingRecords = 5

# ---- SearchDirectionEnum Values ----
$adSearchForward = 1
$adSearchBackward = -1

# ---- PersistFormatEnum Values ----
$adPersistADTG = 0
$adPersistXML = 1

# ---- StringFormatEnum Values ----
$adClipString = 2

# ---- ConnectPromptEnum Values ----
$adPromptAlways = 1
$adPromptComplete = 2
$adPromptCompleteRequired = 3
$adPromptNever = 4

# ---- ConnectModeEnum Values ----
$adModeUnknown = 0
$adModeRead = 1
$adModeWrite = 2
$adModeReadWrite = 3
$adModeShareDenyRead = 4
$adModeShareDenyWrite = 8
$adModeShareExclusive = 0xc
$adModeShareDenyNone = 0x10
$adModeRecursive = 0x400000

# ---- RecordCreateOptionsEnum Values ----
$adCreateCollection = 0x00002000
$adCreateStructDoc = 0x80000000
$adCreateNonCollection = 0x00000000
$adOpenIfExists = 0x02000000
$adCreateOverwrite = 0x04000000
$adFailIfNotExists = -1

# ---- RecordOpenOptionsEnum Values ----
$adOpenRecordUnspecified = -1
$adOpenOutput = 0x00800000
$adOpenAsync = 0x00001000
$adDelayFetchStream = 0x00004000
$adDelayFetchFields = 0x00008000
$adOpenExecuteCommand = 0x00010000

# ---- IsolationLevelEnum Values ----
$adXactUnspecified = 0xffffffff
$adXactChaos = 0x00000010
$adXactReadUncommitted = 0x00000100
$adXactBrowse = 0x00000100
$adXactCursorStability = 0x00001000
$adXactReadCommitted = 0x00001000
$adXactRepeatableRead = 0x00010000
$adXactSerializable = 0x00100000
$adXactIsolated = 0x00100000

# ---- XactAttributeEnum Values ----
$adXactCommitRetaining = 0x00020000
$adXactAbortRetaining = 0x00040000

# ---- PropertyAttributesEnum Values ----
$adPropNotSupported = 0x0000
$adPropRequired = 0x0001
$adPropOptional = 0x0002
$adPropRead = 0x0200
$adPropWrite = 0x0400

# ---- ErrorValueEnum Values ----
$adErrProviderFailed = 0xbb8
$adErrInvalidArgument = 0xbb9
$adErrOpeningFile = 0xbba
$adErrReadFile = 0xbbb
$adErrWriteFile = 0xbbc
$adErrNoCurrentRecord = 0xbcd
$adErrIllegalOperation = 0xc93
$adErrCantChangeProvider = 0xc94
$adErrInTransaction = 0xcae
$adErrFeatureNotAvailable = 0xcb3
$adErrItemNotFound = 0xcc1
$adErrObjectInCollection = 0xd27
$adErrObjectNotSet = 0xd5c
$adErrDataConversion = 0xd5d
$adErrObjectClosed = 0xe78
$adErrObjectOpen = 0xe79
$adErrProviderNotFound = 0xe7a
$adErrBoundToCommand = 0xe7b
$adErrInvalidParamInfo = 0xe7c
$adErrInvalidConnection = 0xe7d
$adErrNotReentrant = 0xe7e
$adErrStillExecuting = 0xe7f
$adErrOperationCancelled = 0xe80
$adErrStillConnecting = 0xe81
$adErrInvalidTransaction = 0xe82
$adErrUnsafeOperation = 0xe84
$adwrnSecurityDialog = 0xe85
$adwrnSecurityDialogHeader = 0xe86
$adErrIntegrityViolation = 0xe87
$adErrPermissionDenied = 0xe88
$adErrDataOverflow = 0xe89
$adErrSchemaViolation = 0xe8a
$adErrSignMismatch = 0xe8b
$adErrCantConvertvalue = 0xe8c
$adErrCantCreate = 0xe8d
$adErrColumnNotOnThisRow = 0xe8e
$adErrURLIntegrViolSetColumns = 0xe8f
$adErrURLDoesNotExist = 0xe8f
$adErrTreePermissionDenied = 0xe90
$adErrInvalidURL = 0xe91
$adErrResourceLocked = 0xe92
$adErrResourceExists = 0xe93
$adErrCannotComplete = 0xe94
$adErrVolumeNotFound = 0xe95
$adErrOutOfSpace = 0xe96
$adErrResourceOutOfScope = 0xe97
$adErrUnavailable = 0xe98
$adErrURLNamedRowDoesNotExist = 0xe99
$adErrDelResOutOfScope = 0xe9a
$adErrPropInvalidColumn = 0xe9b
$adErrPropInvalidOption = 0xe9c
$adErrPropInvalidValue = 0xe9d
$adErrPropConflicting = 0xe9e
$adErrPropNotAllSettable = 0xe9f
$adErrPropNotSet = 0xea0
$adErrPropNotSettable = 0xea1
$adErrPropNotSupported = 0xea2
$adErrCatalogNotSet = 0xea3
$adErrCantChangeConnection = 0xea4
$adErrFieldsUpdateFailed = 0xea5
$adErrDenyNotSupported = 0xea6
$adErrDenyTypeNotSupported = 0xea7
$adErrProviderNotSpecified = 0xea9
$adErrConnectionStringTooLong = 0xeaa

# ---- ParameterAttributesEnum Values ----
$adParamSigned = 0x0010
$adParamNullable = 0x0040
$adParamLong = 0x0080

# ---- ParameterDirectionEnum Values ----
$adParamUnknown = 0x0000
$adParamInput = 0x0001
$adParamOutput = 0x0002
$adParamInputOutput = 0x0003
$adParamReturnValue = 0x0004

# ---- CommandTypeEnum Values ----
$adCmdUnknown = 0x0008
$adCmdText = 0x0001
$adCmdTable = 0x0002
$adCmdStoredProc = 0x0004
$adCmdFile = 0x0100
$adCmdTableDirect = 0x0200

# ---- EventStatusEnum Values ----
$adStatusOK = 0x0000001
$adStatusErrorsOccurred = 0x0000002
$adStatusCantDeny = 0x0000003
$adStatusCancel = 0x0000004
$adStatusUnwantedEvent = 0x0000005

# ---- EventReasonEnum Values ----
$adRsnAddNew = 1
$adRsnDelete = 2
$adRsnUpdate = 3
$adRsnUndoUpdate = 4
$adRsnUndoAddNew = 5
$adRsnUndoDelete = 6
$adRsnRequery = 7
$adRsnResynch = 8
$adRsnClose = 9
$adRsnMove = 10
$adRsnFirstChange = 11
$adRsnMoveFirst = 12
$adRsnMoveNext = 13
$adRsnMovePrevious = 14
$adRsnMoveLast = 15

# ---- SchemaEnum Values ----
$adSchemaProviderSpecific = -1
$adSchemaAsserts = 0
$adSchemaCatalogs = 1
$adSchemaCharacterSets = 2
$adSchemaCollations = 3
$adSchemaColumns = 4
$adSchemaCheckConstraints = 5
$adSchemaConstraintColumnUsage = 6
$adSchemaConstraintTableUsage = 7
$adSchemaKeyColumnUsage = 8
$adSchemaReferentialConstraints = 9
$adSchemaTableConstraints = 10
$adSchemaColumnsDomainUsage = 11
$adSchemaIndexes = 12
$adSchemaColumnPrivileges = 13
$adSchemaTablePrivileges = 14
$adSchemaUsagePrivileges = 15
$adSchemaProcedures = 16
$adSchemaSchemata = 17
$adSchemaSQLLanguages = 18
$adSchemaStatistics = 19
$adSchemaTables = 20
$adSchemaTranslations = 21
$adSchemaProviderTypes = 22
$adSchemaViews = 23
$adSchemaViewColumnUsage = 24
$adSchemaViewTableUsage = 25
$adSchemaProcedureParameters = 26
$adSchemaForeignKeys = 27
$adSchemaPrimaryKeys = 28
$adSchemaProcedureColumns = 29
$adSchemaDBInfoKeywords = 30
$adSchemaDBInfoLiterals = 31
$adSchemaCubes = 32
$adSchemaDimensions = 33
$adSchemaHierarchies = 34
$adSchemaLevels = 35
$adSchemaMeasures = 36
$adSchemaProperties = 37
$adSchemaMembers = 38
$adSchemaTrustees = 39
$adSchemaFunctions = 40
$adSchemaActions = 41
$adSchemaCommands = 42
$adSchemaSets = 43

# ---- FieldStatusEnum Values ----
$adFieldOK = 0
$adFieldCantConvertValue = 2
$adFieldIsNull = 3
$adFieldTruncated = 4
$adFieldSignMismatch = 5
$adFieldDataOverflow = 6
$adFieldCantCreate = 7
$adFieldUnavailable = 8
$adFieldPermissionDenied = 9
$adFieldIntegrityViolation = 10
$adFieldSchemaViolation = 11
$adFieldBadStatus = 12
$adFieldDefault = 13
$adFieldIgnore = 15
$adFieldDoesNotExist = 16
$adFieldInvalidURL = 17
$adFieldResourceLocked = 18
$adFieldResourceExists = 19
$adFieldCannotComplete = 20
$adFieldVolumeNotFound = 21
$adFieldOutOfSpace = 22
$adFieldCannotDeleteSource = 23
$adFieldReadOnly = 24
$adFieldResourceOutOfScope = 25
$adFieldAlreadyExists = 26
$adFieldPendingInsert = 0x10000
$adFieldPendingDelete = 0x20000
$adFieldPendingChange = 0x40000
$adFieldPendingUnknown = 0x80000
$adFieldPendingUnknownDelete = 0x100000

# ---- SeekEnum Values ----
$adSeekFirstEQ = 0x1
$adSeekLastEQ = 0x2
$adSeekAfterEQ = 0x4
$adSeekAfter = 0x8
$adSeekBeforeEQ = 0x10
$adSeekBefore = 0x20

# ---- ADCPROP_UPDATECRITERIA_ENUM Values ----
$adCriteriaKey = 0
$adCriteriaAllCols = 1
$adCriteriaUpdCols = 2
$adCriteriaTimeStamp = 3

# ---- ADCPROP_ASYNCTHREADPRIORITY_ENUM Values ----
$adPriorityLowest = 1
$adPriorityBelowNormal = 2
$adPriorityNormal = 3
$adPriorityAboveNormal = 4
$adPriorityHighest = 5

# ---- ADCPROP_AUTORECALC_ENUM Values ----
$adRecalcUpFront = 0
$adRecalcAlways = 1

# ---- ADCPROP_UPDATERESYNC_ENUM Values ----
$adResyncNone = 0
$adResyncAutoIncrement = 1
$adResyncConflicts = 2
$adResyncUpdates = 4
$adResyncInserts = 8
$adResyncAll = 15

# ---- MoveRecordOptionsEnum Values ----
$adMoveUnspecified = -1
$adMoveOverWrite = 1
$adMoveDontUpdateLinks = 2
$adMoveAllowEmulation = 4

# ---- CopyRecordOptionsEnum Values ----
$adCopyUnspecified = -1
$adCopyOverWrite = 1
$adCopyAllowEmulation = 4
$adCopyNonRecursive = 2

# ---- StreamTypeEnum Values ----
$adTypeBinary = 1
$adTypeText = 2

# ---- LineSeparatorEnum Values ----
$adLF = 10
$adCR = 13
$adCRLF = -1

# ---- StreamOpenOptionsEnum Values ----
$adOpenStreamUnspecified = -1
$adOpenStreamAsync = 1
$adOpenStreamFromRecord = 4

# ---- StreamWriteEnum Values ----
$adWriteChar = 0
$adWriteLine = 1

# ---- SaveOptionsEnum Values ----
$adSaveCreateNotExist = 1
$adSaveCreateOverWrite = 2

# ---- FieldEnum Values ----
$adDefaultStream = -1
$adRecordURL = -2

# ---- StreamReadEnum Values ----
$adReadAll = -1
$adReadLine = -2

# ---- RecordTypeEnum Values ----
$adSimpleRecord = 0
$adCollectionRecord = 1
$adStructDoc = 2

##Access のみ 未完成
Docmd Runcmmandあたりがきついです

#Access
#AcControlType enumeration (Access)
$acAttachment = 126
$acBoundObjectFrame = 108
$acCheckBox = 106
$acComboBox = 111
$acCommandButton = 104
$acCustomControl = 119
$acEmptyCell = 127
$acImage = 103
$acLabel = 100
$acLine = 102
$acListBox = 110
$acNavigationButton = 130
$acNavigationControl = 129
$acObjectFrame = 114
$acOptionButton = 105
$acOptionGroup = 107
$acPage = 124
$acPageBreak = 118
$acRectangle = 101
$acSubForm = 112
$acTabCtl = 123
$acTextBox = 109
$acToggleButton = 122
$acWebBrowser = 128
#AcCurrentView
#CurrentViewプロパティで、オブジェクトの現在のビューを特定するときに使用します。
#acCurViewDatasheetThe object is in Datasheet view.
#acCurViewDesignThe object is in Design view.
#acCurViewFormBrowseThe object is in Form view.
#acCurViewLayoutThe object is in Layout view.
#acCurViewPivotChartThe object is in PivotChart view.
#acCurViewPivotTableThe object is in PivotTable view.
#acCurViewPreviewThe object is in Print Preview.
#acCurViewReportBrowseThe object is in Report view.
AcDataObjectType
#GoToRecord メソッドで、カレント レコードにするレコードが含まれているオブジェクトの種類を指定するときに使用します。
#acActiveDataObjectレコードはアクティブ オブジェクトに含まれています。
#acDataFormレコードはフォームに含まれています。
#acDataFunctionレコードはユーザー定義関数に含まれています (Access プロジェクトのみ)。
#acDataQueryレコードはクエリに含まれています。
#acDataReportレコードはレポートに含まれています。
#acDataServerViewレコードはサーバー ビューに含まれています (Access プロジェクトのみ)。
#acDataStoredProcedureレコードはストアド プロシージャに含まれています (Access プロジェクトのみ)。

$acCurViewDatasheet = 2
$acCurViewDesign = 0
$acCurViewFormBrowse = 1
$acCurViewLayout = 7
$acCurViewPivotChart = 4
$acCurViewPivotTable = 3
$acCurViewPreview = 5
$acCurViewReportBrowse = 6
$acActiveDataObject = -1
$acDataForm = 2
$acDataFunction = 10
$acDataQuery = 1
$acDataReport = 3
$acDataServerView = 7
$acDataStoredProcedure = 9
#AcDataTransferType
#TransferDatabase メソッドまたは TransferSpreadsheet メソッドで行う変換の種類を指定します。
$acExport = 1
$acImport = 0
$acLink = 2
#AcFileFormat
#acFileFormatAccess12Microsoft Access 2007 形式
#acFileFormatAccess2Microsoft Access 2.0 形式
#acFileFormatAccess2000Microsoft Access 2000 形式
#acFileFormatAccess2002Microsoft Access 2002 形式
#acFileFormatAccess95Microsoft Access 95 形式
#acFileFormatAccess97Microsoft Access 97 形式
$acFileFormatAccess12 = 12
$acFileFormatAccess2 = 2
$acFileFormatAccess2000 = 9
$acFileFormatAccess2002 = 10
$acFileFormatAccess95 = 7
$acFileFormatAccess97 = 8

# Runcommand
$acCmdAboutMicrosoftAccess = 35
$acCmdAddDataMacroAfterDelete = 720
$acCmdAddDataMacroAfterInsert = 718
$acCmdAddDataMacroAfterUpdate = 719
$acCmdAddDataMacroValidateChange = 722
$acCmdAddDataMacroValidateDelete = 721
$acCmdAddFromOutlook = 583
$acCmdAddInManager = 526
$acCmdAddNamedDataMacro = 723
$acCmdAddToNewGroup = 494
$acCmdAddWatch = 201
$acCmdAdvancedFilterSort = 99
$acCmdAlignBottom = 46
$acCmdAlignCenter = 477
$acCmdAlignLeft = 43
$acCmdAlignmentAndSizing = 478
$acCmdAlignMiddle = 476
$acCmdAlignRight = 44
$acCmdAlignToGrid = 47
$acCmdAlignTop = 45
$acCmdAlignToShortest = 153
$acCmdAlignToTallest = 154
$acCmdAnalyzePerformance = 283
$acCmdAnalyzeTable = 284
$acCmdAnchorBottomLeft = 616
$acCmdAnchorBottomRight = 618
$acCmdAnchorBottomStretchAcross = 617
$acCmdAnchorStretchAcross = 611
$acCmdAnchorStretchDown = 613
$acCmdAnchorStretchDownAcross = 614
$acCmdAnchorStretchDownRight = 615
$acCmdAnchorTopLeft = 610
$acCmdAnchorTopRight = 612
$acCmdAnswerWizard = 235
$acCmdApplyAutoFormat1 = 648
$acCmdApplyAutoFormat10 = 657
$acCmdApplyAutoFormat11 = 658
$acCmdApplyAutoFormat12 = 659
$acCmdApplyAutoFormat13 = 660
$acCmdApplyAutoFormat14 = 661
$acCmdApplyAutoFormat15 = 662
$acCmdApplyAutoFormat16 = 663
$acCmdApplyAutoFormat17 = 664
$acCmdApplyAutoFormat18 = 665
$acCmdApplyAutoFormat19 = 666
$acCmdApplyAutoFormat2 = 649
$acCmdApplyAutoFormat20 = 667
$acCmdApplyAutoFormat21 = 668
$acCmdApplyAutoFormat22 = 669
$acCmdApplyAutoFormat23 = 670
$acCmdApplyAutoFormat24 = 671
$acCmdApplyAutoFormat25 = 672
$acCmdApplyAutoFormat3 = 650
$acCmdApplyAutoFormat4 = 651
$acCmdApplyAutoFormat5 = 652
$acCmdApplyAutoFormat6 = 653
$acCmdApplyAutoFormat7 = 654
$acCmdApplyAutoFormat8 = 655
$acCmdApplyAutoFormat9 = 656
$acCmdApplyDefault = 55
$acCmdApplyFilterSort = 93
$acCmdAppMaximize = 10
$acCmdAppMinimize = 11
$acCmdAppMove = 12
$acCmdAppRestore = 9
$acCmdAppSize = 13
$acCmdArrangeIconsAuto = 218
$acCmdArrangeIconsByCreated = 216
$acCmdArrangeIconsByModified = 217
$acCmdArrangeIconsByName = 214
$acCmdArrangeIconsByType = 215
$acCmdAutoCorrect = 261
$acCmdAutoDial = 192
$acCmdAutoFormat = 270
$acCmdBackgroundPicture = 474
$acCmdBackgroundSound = 475
$acCmdBackup = 513
$acCmdBookmarksClearAll = 310
$acCmdBookmarksNext = 308
$acCmdBookmarksPrevious = 309
$acCmdBookmarksToggle = 307
$acCmdBringToFront = 52
$acCmdBrowseSharePointList = 621
$acCmdCalculatedColumn = 698
$acCmdCallStack = 172
$acCmdChangeToCheckBox = 231
$acCmdChangeToComboBox = 230
$acCmdChangeToCommandButton = 501
$acCmdChangeToImage = 234
$acCmdChangeToLabel = 228
$acCmdChangeToListBox = 229
$acCmdChangeToOptionButton = 233
$acCmdChangeToTextBox = 227
$acCmdChangeToToggleButton = 232
$acCmdClearAll = 146
$acCmdClearAllBreakpoints = 132
$acCmdClearGrid = 71
$acCmdClearHyperlink = 343
$acCmdClearItemDefaults = 237
$acCmdClose = 58
$acCmdCloseAll = 646
$acCmdCloseDatabase = 538
$acCmdCloseWindow = 186
$acCmdCollectDataViaEmail = 608
$acCmdColumnWidth = 117
$acCmdCompactDatabase = 4
$acCmdCompatCheckCurrentObject = 696
$acCmdCompatCheckDatabase = 695
$acCmdCompileAllModules = 125
$acCmdCompileAndSaveAllModules = 126
$acCmdCompileLoadedModules = 290
$acCmdCompleteWord = 306
$acCmdConditionalFormatting = 500
$acCmdConnection = 383
$acCmdControlMarginsMedium = 630
$acCmdControlMarginsNarrow = 629
$acCmdControlMarginsNone = 628
$acCmdControlMarginsWide = 631
$acCmdControlPaddingMedium = 634
$acCmdControlPaddingNarrow = 633
$acCmdControlPaddingNone = 632
$acCmdControlPaddingWide = 635
$acCmdControlWizardsToggle = 197
$acCmdConvertDatabase = 171
$acCmdConvertLinkedTableToLocal = 700
$acCmdConvertMacrosToVisualBasic = 279
$acCmdCopy = 190
$acCmdCopyDatabaseFile = 516
$acCmdCopyHyperlink = 328
$acCmdCreateMenuFromMacro = 334
$acCmdCreateRelationship = 150
$acCmdCreateReplica = 263
$acCmdCreateShortcut = 219
$acCmdCreateShortcutMenuFromMacro = 336
$acCmdCreateToolbarFromMacro = 335
$acCmdCut = 189
$acCmdDatabaseProperties = 256
$acCmdDatabaseSplitter = 520
$acCmdDataEntry = 78
$acCmdDataOutline = 468
$acCmdDatasheetView = 282
$acCmdDateAndTime = 226
$acCmdDebugWindow = 123
$acCmdDelete = 337
$acCmdDeleteGroup = 493
$acCmdDeletePage = 332
$acCmdDeleteQueryColumn = 81
$acCmdDeleteRecord = 223
$acCmdDeleteRows = 188
$acCmdDeleteSharePointList = 627
$acCmdDeleteTab = 255
$acCmdDeleteTable = 489
$acCmdDeleteTableColumn = 271
$acCmdDeleteWatch = 267
$acCmdDesignObject = 697
$acCmdDesignView = 183
$acCmdDiagramAddRelatedTables = 373
$acCmdDiagramAutosizeSelectedTables = 378
$acCmdDiagramDeleteRelationship = 382
$acCmdDiagramLayoutDiagram = 380
$acCmdDiagramLayoutSelection = 379
$acCmdDiagramModifyUserDefinedView = 375
$acCmdDiagramNewLabel = 372
$acCmdDiagramNewTable = 381
$acCmdDiagramRecalculatePageBreaks = 377
$acCmdDiagramShowRelationshipLabels = 374
$acCmdDiagramViewPageBreaks = 376
$acCmdDiscardChanges = 639
$acCmdDiscardChangesAndRefresh = 640
$acCmdDocMaximize = 15
$acCmdDocMinimize = 60
$acCmdDocMove = 16
$acCmdDocRestore = 14
$acCmdDocSize = 17
$acCmdDocumenter = 285
$acCmdDropSQLDatabase = 517
$acCmdDuplicate = 34
$acCmdEditHyperlink = 325
$acCmdEditingAllowed = 70
$acCmdEditListItems = 607
$acCmdEditRelationship = 151
$acCmdEditTriggers = 384
$acCmdEditWatch = 202
$acCmdEncryptDecryptDatabase = 5
$acCmdEnd = 198
$acCmdExit = 3
$acCmdExportAccess = 559
$acCmdExportdBase = 565
$acCmdExportExcel = 556
$acCmdExportFixedFormat = 592
$acCmdExportHTML = 564
$acCmdExportODBC = 562
$acCmdExportRTF = 558
$acCmdExportSharePointList = 557
$acCmdExportSnapShot = 563
$acCmdExportText = 560
$acCmdExportXML = 561
$acCmdFavoritesAddTo = 299
$acCmdFavoritesOpen = 298
$acCmdFieldList = 42
$acCmdFilterByForm = 207
$acCmdFilterBySelection = 208
$acCmdFilterExcludingSelection = 277
$acCmdFilterMenu = 619
$acCmdFind = 30
$acCmdFindNext = 341
$acCmdFindNextWordUnderCursor = 313
$acCmdFindPrevious = 120
$acCmdFindPrevWordUnderCursor = 312
$acCmdFitToWindow = 245
$acCmdFont = 19
$acCmdFormatCells = 77
$acCmdFormHdrFtr = 36
$acCmdFormView = 281
$acCmdFreezeColumn = 105
$acCmdGoBack = 294
$acCmdGoContinue = 127
$acCmdGoForward = 295
$acCmdGroupByTable = 387
$acCmdGroupControls = 484
$acCmdHideColumns = 79
$acCmdHideMessageBar = 677
$acCmdHidePane = 365
$acCmdHideTable = 147
$acCmdHorizontalSpacingDecrease = 158
$acCmdHorizontalSpacingIncrease = 159
$acCmdHorizontalSpacingMakeEqual = 157
$acCmdHyperlinkDisplayText = 329
$acCmdImportAttachAccess = 544
$acCmdImportAttachdBase = 552
$acCmdImportAttachExcel = 545
$acCmdImportAttachHTML = 550
$acCmdImportAttachODBC = 549
$acCmdImportAttachOutlook = 551
$acCmdImportAttachSharePointList = 547
$acCmdImportAttachText = 546
$acCmdImportAttachXML = 548
$acCmdIndent = 205
$acCmdIndexes = 152
$acCmdInsertActiveXControl = 258
$acCmdInsertChart = 293
$acCmdInsertFile = 39
$acCmdInsertFileIntoModule = 118
$acCmdInsertHyperlink = 259
$acCmdInsertLogo = 585
$acCmdInsertLookupColumn = 273
$acCmdInsertLookupField = 291
$acCmdInsertMovieFromFile = 469
$acCmdInsertNavigationButton = 724
$acCmdInsertObject = 33
$acCmdInsertPage = 331
$acCmdInsertPicture = 222
$acCmdInsertPivotTable = 470
$acCmdInsertProcedure = 262
$acCmdInsertQueryColumn = 82
$acCmdInsertRows = 187
$acCmdInsertSpreadsheet = 471
$acCmdInsertSubdatasheet = 499
$acCmdInsertTableColumn = 272
$acCmdInsertTitle = 586
$acCmdInsertUnboundSection = 472
$acCmdInvokeBuilder = 178
$acCmdJoinProperties = 72
$acCmdLastPosition = 339
$acCmdLayoutGridlinesBoth = 574
$acCmdLayoutGridlinesBottom = 580
$acCmdLayoutGridlinesCrossHatch = 578
$acCmdLayoutGridlinesHorizontal = 576
$acCmdLayoutGridlinesNone = 577
$acCmdLayoutGridlinesOutline = 581
$acCmdLayoutGridlinesTop = 579
$acCmdLayoutGridlinesVertical = 575
$acCmdLayoutInsertColumnLeft = 680
$acCmdLayoutInsertColumnRight = 681
$acCmdLayoutInsertRowAbove = 678
$acCmdLayoutInsertRowBelow = 679
$acCmdLayoutMergeCells = 682
$acCmdLayoutPreview = 141
$acCmdLayoutSplitColumnCell = 683
$acCmdLayoutSplitRowCell = 684
$acCmdLayoutView = 593
$acCmdLineUpIcons = 213
$acCmdLinkedTableManager = 519
$acCmdLinkTables = 102
$acCmdListConstants = 303
$acCmdLoadFromQuery = 95
$acCmdMacroAllActions = 589
$acCmdMakeMDEFile = 7
$acCmdManageAttachments = 673
$acCmdManageReplies = 609
$acCmdManageTableEvents = 717
$acCmdMaximiumRecords = 508
$acCmdMicrosoftAccessHelpTopics = 100
$acCmdMicrosoftOnTheWeb = 236
$acCmdModifySharePointList = 622
$acCmdModifySharePointListAlerts = 623
$acCmdModifySharePointListPermissions = 625
$acCmdModifySharePointListWorkflow = 624
$acCmdMoreWindows = 8
$acCmdMoveColumnCellDown = 573
$acCmdMoveColumnCellUp = 572
$acCmdNewDatabase = 26
$acCmdNewGroup = 491
$acCmdNewObjectAutoForm = 193
$acCmdNewObjectAutoFormWeb = 705
$acCmdNewObjectAutoReport = 194
$acCmdNewObjectAutoReportWeb = 706
$acCmdNewObjectBlankForm = 600
$acCmdNewObjectBlankFormWeb = 703
$acCmdNewObjectBlankReport = 602
$acCmdNewObjectBlankReportWeb = 704
$acCmdNewObjectClassModule = 140
$acCmdNewObjectContinuousForm = 594
$acCmdNewObjectContinuousFormWeb = 701
$acCmdNewObjectDatasheetForm = 598
$acCmdNewObjectDatasheetFormWeb = 702
$acCmdNewObjectDesignForm = 604
$acCmdNewObjectDesignQuery = 603
$acCmdNewObjectDesignReport = 605
$acCmdNewObjectDesignTable = 606
$acCmdNewObjectDiagram = 352
$acCmdNewObjectForm = 136
$acCmdNewObjectFunction = 394
$acCmdNewObjectLabelsReport = 601
$acCmdNewObjectMacro = 138
$acCmdNewObjectMacroWeb = 708
$acCmdNewObjectModalForm = 599
$acCmdNewObjectModule = 139
$acCmdNewObjectNavigationLeft = 690
$acCmdNewObjectNavigationLeftWeb = 710
$acCmdNewObjectNavigationRight = 691
$acCmdNewObjectNavigationRightWeb = 711
$acCmdNewObjectNavigationTop = 689
$acCmdNewObjectNavigationTopLeft = 693
$acCmdNewObjectNavigationTopLeftWeb = 713
$acCmdNewObjectNavigationTopRight = 694
$acCmdNewObjectNavigationTopRightWeb = 714
$acCmdNewObjectNavigationTopTop = 692
$acCmdNewObjectNavigationTopTopWeb = 712
$acCmdNewObjectNavigationTopWeb = 709
$acCmdNewObjectPivotChart = 596
$acCmdNewObjectPivotTable = 597
$acCmdNewObjectQuery = 135
$acCmdNewObjectQueryWeb = 707
$acCmdNewObjectReport = 137
$acCmdNewObjectSplitForm = 595
$acCmdNewObjectStoredProcedure = 351
$acCmdNewObjectTable = 134
$acCmdNewObjectView = 350
$acCmdObjBrwFindWholeWordOnly = 314
$acCmdObjBrwGroupMembers = 318
$acCmdObjBrwHelp = 316
$acCmdObjBrwShowHiddenMembers = 315
$acCmdObjBrwViewDefinition = 317
$acCmdObjectBrowser = 200
$acCmdOfficeClipboard = 488
$acCmdOLEDDELinks = 27
$acCmdOLEObjectConvert = 167
$acCmdOLEObjectDefaultVerb = 57
$acCmdOpenDatabase = 25
$acCmdOpenHyperlink = 326
$acCmdOpenNewHyperlink = 327
$acCmdOpenSearchPage = 253
$acCmdOpenStartPage = 252
$acCmdOpenTable = 221
$acCmdOpenURL = 251
$acCmdOptions = 49
$acCmdOutdent = 206
$acCmdOutputToExcel = 175
$acCmdOutputToRTF = 176
$acCmdOutputToText = 177
$acCmdPageHdrFtr = 182
$acCmdPageNumber = 225
$acCmdPageProperties = 467
$acCmdPageSetup = 32
$acCmdParameterInfo = 305
$acCmdPartialReplicaWizard = 524
$acCmdPaste = 191
$acCmdPasteAppend = 38
$acCmdPasteAsHyperlink = 490
$acCmdPasteFormatting = 587
$acCmdPasteSpecial = 64
$acCmdPivotAutoAverage = 416
$acCmdPivotAutoCount = 413
$acCmdPivotAutoFilter = 398
$acCmdPivotAutoMax = 415
$acCmdPivotAutoMin = 414
$acCmdPivotAutoStdDev = 417
$acCmdPivotAutoStdDevP = 419
$acCmdPivotAutoSum = 412
$acCmdPivotAutoVar = 418
$acCmdPivotAutoVarP = 420
$acCmdPivotChartByRowByColumn = 456
$acCmdPivotChartDrillInto = 457
$acCmdPivotChartDrillOut = 532
$acCmdPivotChartMultiplePlots = 458
$acCmdPivotChartMultiplePlotsUnifiedScale = 459
$acCmdPivotChartShowLegend = 455
$acCmdPivotChartSortAscByTotal = 534
$acCmdPivotChartSortDescByTotal = 535
$acCmdPivotChartType = 453
$acCmdPivotChartUndo = 460
$acCmdPivotChartView = 397
$acCmdPivotCollapse = 400
$acCmdPivotDelete = 454
$acCmdPivotDropAreas = 452
$acCmdPivotExpand = 401
$acCmdPivotRefresh = 404
$acCmdPivotShowAll = 461
$acCmdPivotShowBottom1 = 432
$acCmdPivotShowBottom10 = 435
$acCmdPivotShowBottom10Percent = 440
$acCmdPivotShowBottom1Percent = 437
$acCmdPivotShowBottom2 = 433
$acCmdPivotShowBottom25 = 436
$acCmdPivotShowBottom25Percent = 441
$acCmdPivotShowBottom2Percent = 438
$acCmdPivotShowBottom5 = 434
$acCmdPivotShowBottom5Percent = 439
$acCmdPivotShowBottomOther = 442
$acCmdPivotShowTop1 = 421
$acCmdPivotShowTop10 = 424
$acCmdPivotShowTop10Percent = 429
$acCmdPivotShowTop1Percent = 426
$acCmdPivotShowTop2 = 422
$acCmdPivotShowTop25 = 425
$acCmdPivotShowTop25Percent = 430
$acCmdPivotShowTop2Percent = 427
$acCmdPivotShowTop5 = 423
$acCmdPivotShowTop5Percent = 428
$acCmdPivotShowTopOther = 431
$acCmdPivotTableClearCustomOrdering = 527
$acCmdPivotTableCreateCalcField = 444
$acCmdPivotTableCreateCalcTotal = 443
$acCmdPivotTableDemote = 411
$acCmdPivotTableExpandIndicators = 451
$acCmdPivotTableExportToExcel = 405
$acCmdPivotTableFilterBySelection = 528
$acCmdPivotTableGroupItems = 530
$acCmdPivotTableHideDetails = 402
$acCmdPivotTableMoveToColumnArea = 407
$acCmdPivotTableMoveToDetailArea = 409
$acCmdPivotTableMoveToFilterArea = 408
$acCmdPivotTableMoveToRowArea = 406
$acCmdPivotTablePercentColumnTotal = 447
$acCmdPivotTablePercentGrandTotal = 450
$acCmdPivotTablePercentParentColumnItem = 449
$acCmdPivotTablePercentParentRowItem = 448
$acCmdPivotTablePercentRowTotal = 446
$acCmdPivotTablePromote = 410
$acCmdPivotTableRemove = 529
$acCmdPivotTableShowAsNormal = 445
$acCmdPivotTableShowDetails = 403
$acCmdPivotTableSubtotal = 399
$acCmdPivotTableUngroupItems = 531
$acCmdPivotTableView = 396
$acCmdPrepareDatabaseForWeb = 716
$acCmdPreviewEightPages = 249
$acCmdPreviewFourPages = 248
$acCmdPreviewOnePage = 246
$acCmdPreviewTwelvePages = 250
$acCmdPreviewTwoPages = 247
$acCmdPrimaryKey = 107
$acCmdPrint = 340
$acCmdPrintPreview = 54
$acCmdPrintRelationships = 483
$acCmdPrintSelection = 590
$acCmdProcedureDefinition = 122
$acCmdProperties = 287
$acCmdPublishDatabase = 537
$acCmdPublishDefaults = 324
$acCmdPublishFixedFormat = 591
$acCmdQueryAddToOutput = 362
$acCmdQueryGroupBy = 361
$acCmdQueryParameters = 76
$acCmdQueryTotals = 73
$acCmdQueryTypeAppend = 91
$acCmdQueryTypeCrosstab = 74
$acCmdQueryTypeDelete = 92
$acCmdQueryTypeMakeTable = 94
$acCmdQueryTypeSelect = 89
$acCmdQueryTypeSQLDataDefinition = 168
$acCmdQueryTypeSQLPassThrough = 169
$acCmdQueryTypeSQLUnion = 180
$acCmdQueryTypeUpdate = 90
$acCmdQuickInfo = 304
$acCmdQuickPrint = 278
$acCmdQuickWatch = 203
$acCmdRecordsGoToFirst = 67
$acCmdRecordsGoToLast = 68
$acCmdRecordsGoToNew = 28
$acCmdRecordsGoToNext = 65
$acCmdRecordsGoToPrevious = 66
$acCmdRecoverDesignMaster = 265
$acCmdRedo = 199
$acCmdReferences = 260
$acCmdRefresh = 18
$acCmdRefreshData = 541
$acCmdRefreshPage = 297
$acCmdRefreshSharePointList = 626
$acCmdRegisterActiveXControls = 254
$acCmdRelationships = 133
$acCmdRemove = 366
$acCmdRemoveAllFilters = 644
$acCmdRemoveAllSorts = 645
$acCmdRemoveFilterFromCurrentColumn = 643
$acCmdRemoveFilterSort = 144
$acCmdRemoveFromLayout = 582
$acCmdRemoveTable = 84
$acCmdRename = 143
$acCmdRenameColumn = 274
$acCmdRenameGroup = 492
$acCmdRepairDatabase = 6
$acCmdReplace = 29
$acCmdReportHdrFtr = 37
$acCmdReportView = 539
$acCmdReset = 124
$acCmdResolveConflicts = 266
$acCmdRestore = 514
$acCmdRowHeight = 116
$acCmdRun = 181
$acCmdRunMacro = 31
$acCmdRunOpenMacro = 338
$acCmdSave = 20
$acCmdSaveAllModules = 280
$acCmdSaveAs = 21
$acCmdSaveAsHTML = 321
$acCmdSaveAsOutlookContact = 584
$acCmdSaveAsQuery = 96
$acCmdSaveAsReport = 142
$acCmdSaveAsTemplate = 686
$acCmdSaveDatabaseAsNewTemplatePart = 687
$acCmdSavedExports = 555
$acCmdSavedImports = 543
$acCmdSaveLayout = 145
$acCmdSaveModuleAsText = 119
$acCmdSaveRecord = 97
$acCmdSaveSelectionAsNewDataType = 688
$acCmdSelectAll = 333
$acCmdSelectAllRecords = 109
$acCmdSelectEntireColumn = 571
$acCmdSelectEntireLayout = 715
$acCmdSelectEntireRow = 570
$acCmdSelectForm = 40
$acCmdSelectRecord = 50
$acCmdSelectReport = 319
$acCmdSend = 173
$acCmdSendToBack = 53
$acCmdServerFilterByForm = 507
$acCmdServerProperties = 496
$acCmdSetCaption = 637
$acCmdSetControlDefaults = 56
$acCmdSetDatabasePassword = 275
$acCmdSetNextStatement = 129
$acCmdShareOnSharePoint = 542
$acCmdSharePointSiteRecycleBin = 641
$acCmdShowAllRelationships = 149
$acCmdShowColumnHistory = 620
$acCmdShowDatePicker = 636
$acCmdShowDirectRelationships = 148
$acCmdShowEnvelope = 533
$acCmdShowLogicCatalog = 685
$acCmdShowMembers = 302
$acCmdShowMessageBar = 676
$acCmdShowNextStatement = 130
$acCmdShowTable = 185
$acCmdSingleStep = 88
$acCmdSizeToFit = 59
$acCmdSizeToFitForm = 69
$acCmdSizeToGrid = 48
$acCmdSizeToNarrowest = 155
$acCmdSizeToWidest = 156
$acCmdSnapToGrid = 62
$acCmdSortAscending = 163
$acCmdSortDescending = 164
$acCmdSortingAndGrouping = 51
$acCmdSpeech = 511
$acCmdSpelling = 269
$acCmdSQLView = 184
$acCmdStackedLayout = 568
$acCmdStartNewWorkflow = 675
$acCmdStartupProperties = 224
$acCmdStepInto = 342
$acCmdStepOut = 311
$acCmdStepOver = 128
$acCmdStepToCursor = 204
$acCmdSubdatasheetCollapseAll = 505
$acCmdSubdatasheetExpandAll = 504
$acCmdSubdatasheetRemove = 506
$acCmdSubformDatasheet = 108
$acCmdSubformDatasheetView = 463
$acCmdSubformFormView = 462
$acCmdSubformInNewWindow = 495
$acCmdSubformPivotChartView = 465
$acCmdSubformPivotTableView = 464
$acCmdSwitchboardManager = 521
$acCmdSynchronize = 638
$acCmdSynchronizeNow = 264
$acCmdSyncWebApplication = 699
$acCmdTabControlPageOrder = 330
$acCmdTableAddTable = 498
$acCmdTableCustomView = 497
$acCmdTableNames = 75
$acCmdTabOrder = 41
$acCmdTabularLayout = 569
$acCmdTestValidationRules = 196
$acCmdTileHorizontally = 286
$acCmdTileVertically = 23
$acCmdToggleBreakpoint = 131
$acCmdToggleCacheListData = 642
$acCmdToggleFilter = 220
$acCmdToggleOffline = 540
$acCmdToolbarControlProperties = 301
$acCmdToolbarsCustomize = 165
$acCmdTransferSQLDatabase = 515
$acCmdTransparentBackground = 288
$acCmdTransparentBorder = 289
$acCmdUndo = 292
$acCmdUnfreezeAllColumns = 106
$acCmdUngroupControls = 485
$acCmdUnhideColumns = 80
$acCmdUpsizingWizard = 522
$acCmdUserAndGroupAccounts = 104
$acCmdUserAndGroupPermissions = 103
$acCmdUserLevelSecurityWizard = 276
$acCmdVerticalSpacingDecrease = 161
$acCmdVerticalSpacingIncrease = 162
$acCmdVerticalSpacingMakeEqual = 160
$acCmdViewCode = 170
$acCmdViewDetails = 210
$acCmdViewDiagrams = 354
$acCmdViewFieldList = 353
$acCmdViewForms = 112
$acCmdViewFunctions = 395
$acCmdViewGrid = 63
$acCmdViewLargeIcons = 209
$acCmdViewList = 212
$acCmdViewMacros = 114
$acCmdViewModules = 115
$acCmdViewObjectDependencies = 536
$acCmdViewQueries = 111
$acCmdViewReports = 113
$acCmdViewRuler = 61
$acCmdViewShowPaneDiagram = 358
$acCmdViewShowPaneGrid = 359
$acCmdViewShowPaneSQL = 357
$acCmdViewSmallIcons = 211
$acCmdViewStoredProcedures = 355
$acCmdViewTableColumnNames = 363
$acCmdViewTableColumnProperties = 368
$acCmdViewTableKeys = 369
$acCmdViewTableNameOnly = 364
$acCmdViewTables = 110
$acCmdViewTableUserView = 370
$acCmdViewToolbox = 85
$acCmdViewVerifySQL = 360
$acCmdViewViews = 356
$acCmdVisualBasicEditor = 525
$acCmdWindowArrangeIcons = 24
$acCmdWindowCascade = 22
$acCmdWindowHide = 2
$acCmdWindowSplit = 121
$acCmdWindowUnhide = 1
$acCmdWordMailMerge = 195
$acCmdWorkflowTasks = 674
$acCmdWorkgroupAdministrator = 391
$acCmdZoom10 = 244
$acCmdZoom100 = 240
$acCmdZoom1000 = 482
$acCmdZoom150 = 239
$acCmdZoom200 = 238
$acCmdZoom25 = 243
$acCmdZoom50 = 242
$acCmdZoom500 = 481
$acCmdZoom75 = 241
$acCmdZoomBox = 179
$acCmdZoomSelection = 371

##FSO Officeの8450行の定義
ADOX DAO OFFice RDO FileSystemObjectについて定数を定義しました。
本当はincファイルから変換して読み込む。
紙器をそのまま評価するEvaluateはInvokeで実際に作ってみたのですが、
読み込むときに時間がかかります。
多くの意見を総合すると、つまり定数は定義したほうが早いのですが全部あわせると1万を超えるみたいです。
ところでPowershellには実は定数の定義に限度があります。
くだらない既定なので5.1以降は廃止されたようですが、4096くらいで止まります。

# ADOX
#https://docs.microsoft.com/ja-jp/office/client-developer/access/desktop-database-reference/adox-enumerated-constants
#ここでは、デバッグ用に各定数の値の一覧を示します。ただし、この値は参考用のものであり、ADOX のリリースごとに変更されることがあります。コードを記述するときは、列挙定数の実際の値ではなく、名前のみを使って記述するようにしてください。
#次の列挙定数が定義されています。
# Enum ActionEnum
#SetPermissions メソッドの呼び出し時に実行されるアクションの種類を示します。
$adAccessDeny = 3
$adAccessGrant = 1
$adAccessRevoke = 4
$adAccessSet = 2
#Enum AllowNullsEnum
#Null 値を含むレコードにインデックスを付けるかどうかを示します。
#adindexnullsallowインデックスは、キー列が Null 値のエントリを許可します。Null 値がキー列に入力された場合、そのエントリはインデックスに挿入されます。
#adindexnullsdisallow既定値です。インデックスは、キー列が Null 値のエントリを許可しません。Null 値がキー列に入力された場合、エラーが発生します。
#adindexnullsignoreインデックスは、Null 値のキーを含むエントリを挿入しません。Null 値がキー列に入力された場合、そのエントリは無視され、エラーは発生しません。
#adIndexNullsIgnoreAnyインデックスは、キー列に Null 値を含むエントリを挿入しません。複数列キーを持つインデックスでは、Null 値が入力された列がある場合、そのエントリは無視され、エラーは発生しません。
$adIndexNullsAllow = 0
$adIndexNullsDisallow = 1
$adIndexNullsIgnore = 2
$adIndexNullsIgnoreAny = 4

#ADOX.ColumnAttributesEnum
#adColFixed列は、固定長です。
#adColNullable v列に、Null 値を含めることができます。
$adColFixed = 1
$adColNullable = 2

#Enum InheritTypeEnum
#SetPermissions メソッドで設定された権限をオブジェクトが継承する方法を示します。
#adinheritboth主オブジェクトに含まれるオブジェクトおよびその他のコンテナーの両方が、エントリを継承します。
#adinheritcontainers主オブジェクトに含まれるその他のコンテナーが、エントリを継承します。
#adinheritnone既定値です。継承は行われません。
#adinheritnopropagateadInheritObjects フラグおよび adInheritContainers フラグは、継承されたエントリに伝えられません。
#adinheritobjectsコンテナー内のコンテナー以外のオブジェクトが、権限を継承します。
$adInheritNone = 0
$adInheritBoth = 3
$adInheritContainers = 2
$adInheritNoPropogate = 4
$adInheritObjects = 1

# ADOX.KeyTypeEnum
# https://docs.microsoft.com/ja-jp/sql/ado/reference/adox-api/keytypeenum?view=sql-server-ver15
# キーの種類 (プライマリ、外部、または一意) を指定します。
# adKeyPrimary 既定値。 キーは主キーです。adKeyForeign キーが外部キーです。adKeyUnique 	3 	キーは一意です。
$adKeyPrimary = 1
$adKeyForeign = 2
$adKeyUnique = 3
# ObjectTypeEnum (ADOX)
# 権限または所有権を設定するデータベースオブジェクトの種類を指定します。
# https://docs.microsoft.com/ja-jp/sql/ado/reference/adox-api/objecttypeenum?view=sql-server-ver15
# #adPermObjProviderSpecific 	-1 The object is a type defined by the provider. An error will occur if the ObjectType parameter is adPermObjProviderSpecific and an ObjectTypeId is not supplied. オブジェクトは、プロバイダーによって定義された型です。 ObjectTypeパラメーターがAdpermobjproviderspecificでobjecttypeidが指定されていない場合、エラーが発生します。
$adPermObjColumn = 2
$adPermObjDatabase = 3
$adPermObjProcedure = 4
$adPermObjProviderSpecific = -1
$adPermObjTable = 1
$adPermObjView = 5
#  ADOX.RightsEnum
$adRightCreate = 16384
$adRightDelete = 65536
$adRightDrop = 256
$adRightExclusive = 512
$adRightExecute = 0x20000000
$adRightFull = 0x10000000
$adRightInsert = 0x8000
$adRightMaximumAllowed = 0x2000000
$adRightNone = 0
$adRightRead = 0x80000000
$adRightReadDesign = 0x400
$adRightReadPermissions = 0x20000
$adRightReference = 0x2000
$adRightUpdate = 0x40000000
$adRightWithGrant = 0x1000
$adRightWriteDesign = 0x800
$adRightWriteOwner = 0x80000
$adRightWritePermissions = 0x40000

#Rule Enum
# https://docs.microsoft.com/ja-jp/office/client-developer/access/desktop-database-reference/ruleenum
#Key が削除されたときに従うルールを示します。
##adRICascadeカスケード変更を実行します。
#adRINone既定値です。アクションは実行されません。
#adrisetdefault外部キーの値は、既定値に設定されます。
#adrisetnull外部キーの値は、Null に設定されます。
#Specifies the rule to follow when a Key is deleted.
#adRICascadeCascade changes.
#adRINoneDefault. No action is taken.
#adRISetDefaultForeign key value is set to the default.
#adRISetNullForeign key value is set to null.

$adRICascade = 1
$adRINone = 0
$adRISetDefault = 3
$adRISetNull = 2

# Dao inc
#DAO.CommitTransOptionsEnum
$dbForceOSFlush = 1

#Enum IdleEnum
$dbFreeLocks = 1
$dbRefreshCache = 8
#CollatingOrderEnum enumeration (DAO) 
#https://docs.microsoft.com/ja-jp/office/client-developer/access/desktop-database-reference/collatingorderenum-enumeration-dao


# CursorDriverEnum enumeration (DAO) https://docs.microsoft.com/ja-jp/office/client-developer/access/desktop-database-reference/cursordriverenum-enumeration-dao
#Always uses the FoxPro Cursor Library. This option is required for performing batch updates.
#(Default) Uses server-side cursors if the server supports them; otherwise uses the ODBC Cursor Library.
#Opens all cursors (that is, Recordset objects) as forward-only type, read-only, with a rowset size of 1. Also known as "cursorless queries."
#Always uses the ODBC Cursor Library. This option provides better performance for small result sets, but degrades quickly for larger result sets.
#Always uses server-side cursors. For most large operations this option provides better performance, but might cause more network traffic.
#常に FoxPro カーソル ライブラリを使用します。一括更新を実行する場合には、このオプションを必ず指定する必要があります。
#(既定値) サーバーがサーバー側カーソルをサポートする場合は、サーバー側カーソルを使用します。それ以外の場合は、ODBC カーソル ライブラリを使用します。
#すべてのカーソル (つまり Recordset オブジェクト) を、行セットのサイズが 1 である前方のみの読み取り専用カーソルとして開きます。 カーソルの少ない"クエリとも呼ばれます。"
#常に ODBC カーソル ライブラリを使用します。このオプションは、結果セットが小さい場合にはパフォーマンスが高くなりますが、結果セットが大きくなるとパフォーマンスが急激に低下します。
#常にサーバー側カーソルを使用します。大規模な操作のほとんどでは、このオプションによって高いパフォーマンスが得られますが、ネットワーク トラフィックが増える可能性があります。

$dbUseClientBatchCursor = 3
$dbUseDefaultCursor = -1
$dbUseNoCursor = 4
$dbUseODBCCursor = 1
$dbUseServerCursor = 2
# databasetypeenum 列挙 (DAO) https://docs.microsoft.com/ja-jp/office/client-developer/access/desktop-database-reference/databasetypeenum-enumeration-dao
$dbDecrypt = 4
$dbEncrypt = 2
$dbVersion10 = 1
$dbVersion11 = 8
$dbVersion20 = 16
$dbVersion30 = 32
$dbVersion40 = 64
$dbVersion120 = 128
#Hidden DatabaseType
$dbVersion140 = 256
$dbVersion150 = 512
$dbVersion167 = 1024

#DAO._DAOSuppHelp (DAO) Hidden
#$KeepLocal = 0
#$LogMessages = 0
#$Replicable = 0
#$ReplicableBool = 0
#$V1xNullBehavior = 0

#FieldAttributeEnum(DAO)
$dbAutoIncrField = 16 
$dbDescending = 1
$dbFixedField = 1
$dbHyperlinkField = 32768
$dbSystemField = 8192
$dbUpdatableField = 32
$dbVariableField = 2
#Data Type Enum(DAO) https://docs.microsoft.com/ja-jp/office/client-developer/access/desktop-database-reference/datatypeenum-enumeration-dao
$dbAttachment = 101
$dbBigInt = 16
$dbBinary = 9
$dbBoolean = 1
$dbByte = 2
$dbChar = 18
$dbComplexByte = 102
$dbComplexDecimal = 108
$dbComplexDouble = 106
$dbComplexGUID = 107
$dbComplexInteger = 103
$dbComplexLong = 104
$dbComplexSingle = 105
$dbComplexText = 109
$dbCurrency = 5
$dbDate = 8
$dbDecimal = 20
$dbDouble = 7
$dbFloat = 21
$dbGUID = 15
$dbInteger = 3
$dbLong = 4
$dbLongBinary = 11
$dbMemo = 12
$dbNumeric = 19
$dbSingle = 6
$dbText = 10
$dbTime = 22
$dbTimeStamp = 23
$dbVarBinary = 17

$dbSortArabic = 1025
$dbSortChineseSimplified = 2052
$dbSortChineseTraditional = 1028
$dbSortCyrillic = 1049
$dbSortCzech = 1029
$dbSortDutch = 1043
$dbSortGeneral = 1033
$dbSortGreek = 1032
$dbSortHebrew = 1037
$dbSortHungarian = 1038
$dbSortIcelandic = 1039
$dbSortJapanese = 1041
$dbSortKorean = 1042
$dbSortNeutral = 1024
$dbSortNorwdan = 1030
$dbSortPDXIntl = 1033
$dbSortPDXNor = 1030
$dbSortPDXSwe = 1053
$dbSortPolish = 1045
$dbSortSlovenian = 1060
$dbSortSpanish = 1034
$dbSortSwedFin = 1053
$dbSortThai = 1054
$dbSortTurkish = 1055
$dbSortUndefined = -1
$adSortAscending = 1
$adSortDescending = 2

# $enum DriverPromptEnum
# Access 2013ではODBCDIRECT接続がサポートされないため削除されている
$dbDriverComplete = 0
$dbDriverCompleteRequired = 3
$dbDriverNoPrompt = 1
$dbDriverPrompt = 2

#EditModeEnum
#https://docs.microsoft.com/ja-jp/office/client-developer/access/desktop-database-reference/editmodeenum-enumeration-dao
#カレント レコードの編集の状態を示します。
#dbEditAddAddNew method invoked. AddNew メソッドが呼び出されました。
#dbEditInProgressEdit method invoked. Edit メソッドが呼び出されました。
#dbEditNoneEdit method invoked. NonEdit Methodが呼び出されました。
$dbEditAdd = 2
$dbEditInProgress = 1
$dbEditNone = 0

# $enum ISAMStatsEnum 
# 削除されている定数
# https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/activex-dao/index.d.ts
$DiskReads = 0
$DiskWrites = 1
$LocksPlaced = 4
$LocksReleased = 5
$ReadsFromCache = 2
$ReadsFromReadAheadCache = 3

# LockTypeEnum(DAO)
#https://docs.microsoft.com/ja-jp/office/client-developer/access/desktop-database-reference/locktypeenum-enumeration-dao
$dbPessimistic = 2
$dbOptimistic = 3
$dbOptimisticBatch = 5
$dbOptimisticValue = -1




#LanguageConstants
#https://docs.microsoft.com/ja-jp/office/client-developer/access/desktop-database-reference/languageconstants-enumeration-dao

$dbLangArabic = ";LANGID=0x0401;CP=1256;COUNTRY=0"
$dbLangChineseSimplified = ";LANGID=0x0804;CP=936;COUNTRY=0"
$dbLangChineseTraditional = ";LANGID=0x0404;CP=950;COUNTRY=0"
$dbLangCyrillic = ";LANGID=0x0419;CP=1251;COUNTRY=0"
$dbLangCzech = ";LANGID=0x0405;CP=1250;COUNTRY=0"
$dbLangDutch = ";LANGID=0x0413;CP=1252;COUNTRY=0"
$dbLangGeneral = ";LANGID=0x0409;CP=1252;COUNTRY=0"
$dbLangGreek = ";LANGID=0x0408;CP=1253;COUNTRY=0"
$dbLangHebrew = ";LANGID=0x040D;CP=1255;COUNTRY=0"
$dbLangHungarian = ";LANGID=0x040E;CP=1250;COUNTRY=0"
$dbLangIcelandic = ";LANGID=0x040F;CP=1252;COUNTRY=0"
$dbLangJapanese = ";LANGID=0x0411;CP=932;COUNTRY=0"
$dbLangJapaneseRadicalStrokeCount = ";LANGID=0x00040411;CP=65001;COUNTRY=0"
$dbLangKorean = ";LANGID=0x0412;CP=949;COUNTRY=0"
$dbLangNordic = ";LANGID=0x041D;CP=1252;COUNTRY=0"
$dbLangNorwDan = ";LANGID=0x0406;CP=1252;COUNTRY=0"
$dbLangPolish = ";LANGID=0x0415;CP=1250;COUNTRY=0"
$dbLangSlovenian = ";LANGID=0x0424;CP=1250;COUNTRY=0"
$dbLangSpanish = ";LANGID=0x040A;CP=1252;COUNTRY=0"
$dbLangSwedFin = ";LANGID=0x041D;CP=1252;COUNTRY=0"
$dbLangThai = ";LANGID=0x041E;CP=874;COUNTRY=0"
$dbLangTurkish = ";LANGID=0x041F;CP=1254;COUNTRY=0"
#ParameterDirectionEnum(Dao)
#https://docs.microsoft.com/ja-jp/office/client-developer/access/desktop-database-reference/parameterdirectionenum-enumeration-dao
# Direction/方向" プロパティで、 Parameter オブジェクトの種類を指定するために使用します。
#dbParamInput(既定値) プロシージャに情報を渡します。
#dbParamInputOutputプロシージャとの間で情報を受け渡します。
#代わりに dbparamoutputプロシージャからの情報を SQL の出力パラメーターとして返します。
#は dbparamreturnvalueプロシージャからの戻り値を渡します。
#Used with the Direction property to specify the type for a Parameter object.
#dbParamInput(Default) Passes information to the procedure.
#dbParamInputOutputPasses information both to and from the procedure.
#dbParamOutputReturns information from the procedure as an output parameter in SQL.
#dbParamReturnValuePasses the return value from a procedure.
$dbParamInput = 1
$dbParamInputOutput = 3
$dbParamOutput = 2
$dbParamReturnValue = 4


# PermissionEnum(DAO)
#https://docs.microsoft.com/ja-jp/office/client-developer/access/desktop-database-reference/permissionenum-enumeration-dao
#
#dbseccreateユーザーは新しいドキュメントを作成できます (Document オブジェクトに対しては無効)。
#dbsecdbadminユーザーはデータベースをレプリケートし、データベース パスワードを変更できます (Document オブジェクトに対しては無効)。
#dbsecdbcreateユーザーは新しいデータベースを作成できます。このオプションは、ワークグループ情報ファイル (Systen.mdw) の Databases コンテナーでのみ有効です。この定数は、Document オブジェクトに対しては無効です。
#dbsecdbexclusiveユーザーはデータベースに排他的にアクセスできます。
#dbSecDBOpenユーザーはデータベースを開くことができます。
#dbsecdeleteユーザーはオブジェクトを削除できます。
#dbsecdeletedataユーザーはレコードを削除できます。
#dbsecfullaccessユーザーはオブジェクトに完全にアクセスできます。
#dbsecinsertdataユーザーはレコードを追加できます。
#dbSecNoAccessユーザーはオブジェクトにアクセスできません (Document オブジェクトに対しては無効)。
#dbsecreaddefユーザーは列情報およびインデックス情報を含むテーブル定義を読み取ることができます。
#dbsecreadsecユーザーはオブジェクトのセキュリティ関連情報を読み取ることができます。
#dbsecreplacedataユーザーはレコードを変更できます。
#dbSecRetrieveDataユーザーは Document オブジェクトからデータを取得できます。
#dbsecwritedefユーザーは列情報およびインデックス情報を含むテーブル定義を変更または削除できます。
#dbsecwriteownerユーザーは "Owner/所有者" プロパティの設定を変更できます。
#dbsecwritesecユーザーはアクセス権限を変更できます。
#Used with the Permissions property to specify the type of permissions.
#dbSecCreateThe user can create new documents (not valid for Document objects).
#dbSecDBAdminThe user can replicate a database and change the database password (not valid for Document objects).
#dbSecDBCreateThe user can create new databases. This option is valid only on the Databases container in the workgroup information file (Systen.mdw). This constant is not valid for Document objects.
#dbSecDBExclusiveThe user has exclusive access to the database.
#dbSecDBOpenThe user can open the database.
#dbSecDeleteThe user can delete the object.
#dbSecDeleteDataThe user can delete records.
#dbSecFullAccessThe user has full access to the object.
#dbSecInsertDataThe user can add records.
#dbSecNoAccessThe user does not have access to the object (not valid for Document objects).
#dbSecReadDefThe user can read the table definition, including column and index information.
#dbSecReadSecThe user can read the object#s security-related information.
#dbSecReplaceDataThe user can modify records.
#dbSecRetrieveDataThe user can retrieve data from the Document object.
#dbSecWriteDefThe user can modify or delete the table definition, including column and index information.
#dbSecWriteOwnerThe user can change the Owner property setting.
#dbSecWriteSecThe user can alter access permissions.
$dbSecCreate = 1
$dbSecDBAdmin = 8
$dbSecDBCreate = 1
$dbSecDBExclusive = 4
$dbSecDBOpen = 2
$dbSecDelete = 65536
$dbSecDeleteData = 128
$dbSecFullAccess = 1048575
$dbSecInsertData = 32
$dbSecNoAccess = 0
$dbSecReadDef = 4
$dbSecReadSec = 131072
$dbSecReplaceData = 64
$dbSecRetrieveData = 20
$dbSecWriteDef = 65548
$dbSecWriteOwner = 524288
$dbSecWriteSec = 262144

#QueryDefTypeEnum enumeration (DAO) https://docs.microsoft.com/ja-jp/office/client-developer/access/desktop-database-reference/querydeftypeenum-enumeration-dao
#dbqactionアクション クエリ 
#dbqappend追加クエリ
#dbqcompound複合クエリ
#dbqcrosstab 集計クロス集計クエリ
#dbqddlDDL (データ定義言語) クエリ
#dbqdelete削除クエリ
#dbqmaketableテーブル作成クエリ
#dbqprocedureストアド プロシージャを実行する SQL プロシージャ
#dbqselect選択クエリ
#dbQSetOperation結合クエリ
#dbqsptbulk一括操作クエリ
#dbqsqlpassthroughSQL パススルー クエリ
#dbQUpdate更新クエリ
#dbQActionAction query
#dbQAppendAppend query
#dbQCompoundCompound query
#dbQCrosstabCrosstab query
#dbQDDLData-definition language (DDL) query
#dbQDeleteDelete query
#dbQMakeTableMake-table query
#dbQProcedureSQL procedure that executes a stored procedure
#dbQSelectSelect query
#dbQSetOperationSet operation query
#dbQSPTBulkBulk operation query
#dbQSQLPassThroughSQL pass-through query
#dbQUpdateUpdate query
$dbQAction = 240
$dbQAppend = 64
$dbQCompound = 160
$dbQCrosstab = 16
$dbQDDL = 96
$dbQDelete = 32
$dbQMakeTable = 80
$dbQProcedure = 224
$dbQSelect = 0
$dbQSetOperation = 128
$dbQSPTBulk = 144
$dbQSQLPassThrough = 112
$dbQUpdate = 48

#QueryDefStateEnum enumeration (DAO)
# Prepare プロパティで、クエリの準備方法の指定に使用されるメソッドを指定するために使用します。
#dbQPrepare(既定値) ステートメントが準備されます (つまり、ODBC SQLPrepare API が呼び出されます)。
#dbQUnprepareステートメントが準備されません (つまり、ODBC SQLExecDirect API が呼び出されます)。
#Used with the Prepare property to specify the method used to specify how a query should be prepared.
#dbQPrepare(Default) The statement is prepared (that is, the ODBC SQLPrepare API is called).
#dbQUnprepareThe statement is not prepared (that is, the ODBC SQLExecDirect API is called).
$dbQPrepare = 1
$dbQUnprepare = 2

# RecordsetOptionEnum 列挙 (DAO) https://docs.microsoft.com/ja-jp/office/client-developer/access/desktop-database-reference/recordsetoptionenum-enumeration-dao
#dbAppendOnlyユーザーが新しいレコードをダイナセットに追加するのを許可しますが、既存のレコードを読み取ることは許可しません。
#dbConsistentダイナセット内の他のレコードに影響を与えないフィールドにのみ更新を適用します (ダイナセット タイプとスナップショット タイプのみ)。
#dbDenyRead他のユーザーが Recordset のレコードを読み取れないようにします (テーブル タイプのみ)。
#dbDenyWrite他のユーザーが Recordset のレコードを変更できないようにします。
#dbExecDirectSQLPrepare ODBC 関数を最初に呼び出さずに、クエリを実行します。
#dbFailOnErrorエラーが発生した場合、更新をロールバックします。
#dbForwardOnly前方スクロールのみのスナップショット タイプ Recordset を作成します (スナップショット タイプのみ)。
#dbInconsistent他のレコードに影響が及ぶ場合でも、すべてのダイナセット フィールドに更新を適用します (ダイナセット タイプとスナップショット タイプのみ)。
#dbReadOnlyRecordset を読み取り専用として開きます。
#dbRunAsyncクエリを非同期で実行します。
#dbSeeChanges編集中のデータを別のユーザーが変更している場合、実行時エラーを生成します (ダイナセット タイプのみ)。
#dbSQLPassThroughODBC データベースに SQL ステートメントを送信します (スナップショット タイプのみ)。

$dbAppendOnly = 8
$dbConsistent = 32
$dbDenyRead = 2
$dbDenyWrite = 1
$dbExecDirect = 2048
$dbFailOnError = 128
$dbForwardOnly = 256
$dbInconsistent = 16
$dbReadOnly = 4
$dbRunAsync = 1024
$dbSeeChanges = 512
$dbSQLPassThrough = 64
# RecordsetTypeEnum(Dao) https://docs.microsoft.com/ja-jp/office/client-developer/access/desktop-database-reference/recordsettypeenum-enumeration-dao
#dbOpenDynamicダイナセット タイプの Recordset を開きます
#dbOpenDynasetダイナセット タイプの Recordset を開きます。
#dbOpenForwardOnly前方スクロール タイプの Recordset を開きます。
#dbOpenSnapshotスナップショット タイプの Recordset を開きます。
#dbOpenTableテーブル タイプの Recordset を開きます。
$dbOpenDynamic = 16
$dbOpenDynaset = 2
$dbOpenForwardOnly = 8
$dbOpenSnapshot = 4
$dbOpenTable = 1

#RecordStatusEnum enumeration (DAO)
# https://docs.microsoft.com/ja-jp/office/client-developer/access/desktop-database-reference/recordstatusenum-enumeration-dao
#RecordStatus プロパティで、一括更新の場合の現在のレコードの更新状態を示すために使用します。
#dbrecorddbdeletedレコードはローカルで削除され、データベース内でも削除されました。
#dbrecorddeletedレコードは削除されましたが、データベース内ではまだ削除されていません。
#dbRecordModifiedレコードは変更されましたが、データベース内では更新されていません。
#dbrecordnewレコードは AddNew メソッドによって挿入されましたが、データベースにはまだ挿入されていません。
#dbRecordUnmodified(既定値) レコードはまだ変更されていないか、正しく更新されました。
# Used with the RecordStatus property to indicate the update status of the current record if it is part of a batch update.
#dbRecordDBDeletedThe record has been deleted locally and in the database.
#dbRecordDeletedThe record has been deleted, but not yet deleted in the database.
#dbRecordModifiedThe record has been modified and not updated in the database.
#dbRecordNewThe record has been inserted with the AddNew method, but not yet inserted into the database.
#RecordStatus プロパティで、一括更新の場合の現在のレコードの更新状態を示すために使用します。
$dbRecordDBDeleted = 4
$dbRecordDeleted = 3
$dbRecordModified = 1
$dbRecordNew = 2

#RelationAttributeEnum 列挙 (DAO)
#https://docs.microsoft.com/ja-jp/office/client-developer/access/desktop-database-reference/relationattributeenum-enumeration-dao
#Attributes/属性 プロパティで、 Relation オブジェクトの属性を特定するために使用します。
#dbRelationDeleteCascade削除が連鎖的に行われます。
#dbRelationDontEnforceリレーションシップは適用されません (参照整合性なし)。
#dbRelationInheritedリレーションシップは 2 つのリンク テーブルを含むデータベース内に存在します。
#dbRelationLeftMicrosoft Access のみ有効。デザイン ビューで、左結合を既定の結合の種類として表示します。
#dbRelationRightMicrosoft Access のみ有効。デザイン ビューで、右結合を既定の結合の種類として表示します。
#dbRelationUnique一対一リレーションシップ。
#dbRelationUpdateCascade更新が連鎖的に行われます。
#Used with the Attributes property to determine attributes of a Relation object.
#dbRelationDeleteCascadeDeletions cascade
#dbRelationDontEnforceRelationship not enforced (no referential integrity)
#dbRelationInheritedRelationship exists in the database containing the two linked tables
#dbRelationLeftMicrosoft Access only. In Design view, display a LEFT JOIN as the default join type.
#dbRelationRightMicrosoft Access only. In Design view, display a RIGHT JOIN as the default join type.
#dbRelationUniqueOne-to-one relationship
#dbRelationUpdateCascadeUpdates cascade

$dbRelationDeleteCascade = 4096
$dbRelationDontEnforce = 2
$dbRelationInherited = 4
$dbRelationLeft = 16777216
$dbRelationRight = 33554432
$dbRelationUnique = 1
$dbRelationUpdateCascade = 256


# ReplicaTypeEnum enumeration (DAO)
# https://docs.microsoft.com/ja-jp/office/client-developer/access/desktop-database-reference/replicatypeenum-enumeration-dao
# MakeReplica メソッドで、作成するレプリカの種類を指定するために使用します。 Partial 一部、新しいデータベースのレプリケート要素を読み取り専用にします
#dbRepMakePartialCreates a partial replica.
#dbRepMakeReadOnlyMakes replicable elements of new database read-only.

$dbRepMakePartial = 1
$dbRepMakeReadOnly = 2


# Set Option Enum ( DAO )
# https://docs.microsoft.com/ja-jp/office/client-developer/access/desktop-database-reference/setoptionenum-enumeration-dao
$dbExclusiveAsyncDelay = 60
$dbFlushTransactionTimeout = 66
$dbImplicitCommitSync = 59
$dbLockDelay = 63
$dbLockRetry = 57
$dbMaxBufferSize = 8
$dbMaxLocksPerFile = 62
$dbPageTimeout = 6
$dbPasswordEncryptionAlgorithm = 81
$dbPasswordEncryptionKeyLength = 82
$dbPasswordEncryptionProvider = 80
$dbRecycleLVs = 65
$dbSharedAsyncDelay = 61
$dbUserCommitSync = 58

# SynchronizeTypeEnum enumeration (DAO) 
# https://docs.microsoft.com/ja-jp/office/client-developer/access/desktop-database-reference/synchronizetypeenum-enumeration-dao
# Synchronize メソッドで、2 つのレプリカに適用する同期の種類を特定するために使用します。
#dbRepExportChangesカレント データベースから対象のデータベースに変更を送信します。
#dbRepImpExpChanges双方向交換でデータを送受信します。
#dbRepImportChanges対象のデータベースから変更を受信します。
#dbRepSyncInternet双方向交換でデータを送受信します。
#dbRepExportChangesSends changes from current database to target database.
#dbRepImpExpChangesSends and receives data in a bidirectional exchange.
#dbRepImportChangesReceives changes from target database.
#dbRepSyncInternetSends and receives data in a bidirectional exchange.
$dbRepExportChanges = 1
$dbRepImpExpChanges = 4
$dbRepImportChanges = 2
$dbRepSyncInternet = 16

# TableDefAttributeEnum enumeration (DAO)
#https://docs.microsoft.com/ja-jp/office/client-developer/access/desktop-database-reference/tabledefattributeenum-enumeration-dao
#dbAttachedODBC  リンクされた ODBC データベース テーブル。dbHiddenObject 一時的な隠しテーブル dbsystemobject システムテーブル
$dbAttachedODBC = 536870912
$dbAttachedTable = 1073741824
$dbAttachExclusive = 65536
$dbAttachSavePWD = 131072
$dbHiddenObject = 1
$dbSystemObject = -2147483646

# UpdateCriteriaEnum enumeration (DAO)
# https://docs.microsoft.com/ja-jp/office/client-developer/access/desktop-database-reference/updatecriteriaenum-enumeration-dao
# UpdateOptions メソッドで、一括更新の構築方法を指定するために使用します。
# Used with the UpdateOptions method to specify how a batch update is constructed.
#dbCriteriaAllColsUses the key column(s) and all the columns in the where clause.
#dbCriteriaDeleteInsertUses a pair of DELETE and INSERT statements for each modified row.
#dbCriteriaKeyUses just the key column(s) in the where clause.
#dbCriteriaModValuesUses the key column(s) and all updated columns in the where clause.
#dbCriteriaTimestampUses just the timestamp column if available (will generate a run-time error if no timestamp column is in the result set).
#dbCriteriaUpdateUses an UPDATE statement for each modified row.
#dbCriteriaAllColsUses (1 つまたは複数) とすべての列を where 句で使用します。
#dbCriteriaDeleteInsertUses 変更された行ごとに、DELETE ステートメントと INSERT ステートメントのペアを使用します。
#dbCriteriaKeyUses (1 つまたは複数) のみを where 句で使用します。
#dbCriteriaModValuesキー列 (1 つまたは複数) と更新されたすべての列を where 句で使用します。
#dbCriteriaTimestampUses タイムスタンプ列が使用可能な場合、タイムスタンプ列のみを使用します (結果セットにタイムスタンプ列が含まれない場合は、実行時エラーを生成します)。
#dbCriteriaUpdate変更された行ごとに UPDATE ステートメントを使用します。

$dbCriteriaAllCols = 4
$dbCriteriaDeleteInsert = 16
$dbCriteriaKey = 1
$dbCriteriaModValues = 2
$dbCriteriaTimestamp = 8
$dbCriteriaUpdate = 32

# UpdateTypeEnum 列挙 (DAO)
# https://docs.microsoft.com/ja-jp/office/client-developer/access/desktop-database-reference/updatetypeenum-enumeration-dao
#Update メソッドで、ディスクに書き込む更新を指定するために使用します。
#dbUpdateRegular(既定値) 保留中の変更をキャッシュせず、ディスクに直ちに書き込みます。
#dbUpdateBatch更新キャッシュ内の保留中のすべての変更をディスクに書き込みます。
#dbUpdateCurrentRecord現在のレコードの保留中の変更のみをディスクに書き込みます。
#dbUpdateRegular(Default) Pending changes are not cached and are written to disk immediately.
#dbUpdateBatchAll pending changes in the update cache are written to disk.
#dbUpdateCurrentRecordOnly the current record#s pending changes are written to disk.

$dbUpdateRegular = 1
$dbUpdateBatch = 4
$dbUpdateCurrentRecord = 2

#WorkspaceTypeEnum enumeration (DAO)
#https://docs.microsoft.com/ja-jp/office/client-developer/access/desktop-database-reference/workspacetypeenum-enumeration-dao
#CreateWorkspace メソッドで、作成するワークスペースの種類を指定するために使用します。
# Used with the CreateWorkspace method to specify the type of workspace to create.
#dbUseJet  Microsoft Access ワークスペースを作成します。
#dbUseJetCreate a Microsoft Access workspace.
$dbUseJet = 2
$dbUseODBC = 1

#----- End of DAO ----------------------------------------------------------
# アプリの配布に必要な RDO ファイルを確認する方法
# https://support.microsoft.com/ja-jp/help/195474/how-to-determine-rdo-files-needed-for-distribution-of-app
# これはmsrdo20.dllは他にRDOCURS.DLL, COMCAT.DLL, and ODBC32.DLLが必要だとしている。
# https://support.microsoft.com/en-us/help/195474/how-to-determine-rdo-files-needed-for-distribution-of-app
# https://jeffpar.github.io/kbarchive/kb/176/Q176428/
# msrdo20 ocxのエラーはここにコピーがあるが、VB5.0のため無関係
# Windows 10にMDACをインストールする
# https://qastack.jp/superuser/1030090/install-mdac-on-windows-10
# ここでactivex...というサイトがあるがアクセスが拒否される。
# https://www.atmarkit.co.jp/fdotnet/insiderseye/20040904vb2005/vb2005_02.html
# その次のメジャー・リリースであるVB 4.0で、Microsoftは新しいデータ・アクセスAPI「Remote Data Objects(RDO)」を投入した。DAOと同様、RDOもCOMインターフェイスだった。しかし、単一のデータベース・エンジン(Jet)上に構築されるDAOと異なり、RDOはMicrosoftやOracle、Sybaseなどがサポートするマルチベンダ・データベースAPI「Open Database Connectivity(ODBC)」上に構築された。従って、DAOではローカル・データベース・アプリケーションの構築が可能であったのに対し、RDOでは既存のコーポレート・データベースに対するフロントエンドの開発が容易になり、VBをクライアント/サーバ・コンピューティングの世界へと導いた。
# http://ma5555a.blog42.fc2.com/blog-entry-1.html
# Excel2007 VBA ではRDOが使えなくなっているようだ。
# RDO AttributeConstants
# https://wutils.com/com-dll/constants/constants-RDO.htm
# 以下の定数は Remote Data Object 2.0 RDO用の定数です
# しかし 64bit Windows 10には msrdo20.dllが含まれていないため、インストールする必要があります
# Visual Basic 6.0 Service Pack 6:ランタイム再頒布可能パッケージには入っていない
# Comcat.dllは入っている。
# https://www.microsoft.com/ja-jp/download/details.aspx?id=24417
# VB6.0 Sp6 に入っている
# https://www.microsoft.com/ja-jp/download/details.aspx?id=5721
# をダウンロードしDowloadしたフォルダにあたらしいフォルダを作ります。
# ダブルクリックでそのフォルダを指定して展開します。
# ,Lhaplusでmdrdo.cabを展開します。msrdo20.dllはこの中に含まれています。
# cmd.exeを管理者権限で起動し、 %Windir%\SysWow64\にコピーします。
# RegSrv32で登録します
$rdAutoIncrColumn = 16
# column value for new rows is automatically incremented to a unique integer that can#t be changed.
$rdFixedColumn = 1
#The column value for new rows is automatically incremented to a unique integer that can#t be changed.
$rdVariableColumn = 2
# column size is variable (VarChar and LongVarChar columns only).
$rdTimestampColumn = 64
#  The column is a timestamp value. This attribute is set only for rdClientBatch cursors.
$rdUpdatableColumn = 32

# Prompt Constants enum, 4 members.
# Prompt Constants
# Public Enum PromptConstants
$rdDriverPrompt = 0
#The driver manager uses the connection string provided in Connect.  If sufficient information is not provided, the OpenConnection method returns a trappable error.
$rdDriverNoPrompt = 1
#If the connection string provided includes the DSN keyword, the driver manager uses the string as provided in Connect, otherwise it behaves as it does when rdDriverPrompt is specified.
$rdDriverComplete = 2
#Behaves like rdDriverComplete except the driver disables the controls for any information not required to complete the connection.
$rdDriverCompleteRequired = 3

#CursorDriverConstants enum, 5 members.
#CursorDriver Constants
#Public Enum CursorDriverConstants
#The ODBC driver will choose the appropriate style of cursors. Server-side cursors are used if they are available.
$ rdUseIfNeeded = 0  #0x0

#Use the ODBC cursor library.
$ rdUseOdbc = 1
#Use server-side cursors.
$ rdUseServer = 2
#Use the optimistic batch cursor library.
$ rdUseClientBatch = 3
#Result set is not returned as a cursor.
$ rdUseNone = 4
#EditModeConstants enum, 3 members.

#EditMode Constants
#Public Enum EditModeConstants
#No editing operation is in progress.
$rdEditNone = 0
#Edit method has been invoked, and the current record is in the copy buffer.
$rdEditInProgress = 1
#AddNew method has been invoked, and the current record in the copy buffer is a new record that hasn#t been saved in the database.
$rdEditAdd = 2

# RDO Datatype Constants
$rdTypeBIGINT = -5
# Signed, exact numeric value with precision 19 (signed) or 20 (unsigned), scale 0; (signed: -263  n  263-1; unsigned:  0  n  264-1).
$rdTypeBINARY = -2
# Fixed-length binary data. Maximum length 255.
$rdTypeBIT = -7
# Single binary digit.
$rdTypeCHAR = 1
# Fixed-length character string. Length set by Size property.
$rdTypeDATE = 9
# Date -- data source dependent.
$rdTypeDECIMAL = 3
# Signed, exact, numeric value with precision p and scale s (1  p 15; 0  s  p).
$rdTypeDOUBLE = 8
# Signed, approximate numeric value with mantissa precision 15 (zero or absolute value 10-308  to 10308).
$rdTypeFLOAT = 6
# Signed, approximate numeric value with mantissa precision 15 (zero or absolute value 10-308  to 10308).
$rdTypeGUID = -11
# GUID.
$rdTypeINTEGER = 4
# Signed, exact numeric value with precision 10, scale 0 (signed: -231  n  231-1; unsigned:  0  n  232-1).

$rdTypeSMALLINT = 5
#Signed, exact numeric value with precision 5, scale 0 (signed: -32,768  n  32,767, unsigned: 0  n  65,535).

#Signed, approximate numeric value with mantissa precision 7 (zero or absolute value 10-38  to 1038).
$rdTypeREAL = 7

# Time -- data source dependent.
$rdTypeTIME = 10
# TimeStamp -- data source dependent.
$rdTypeTIMESTAMP = 11
# Variable-length character string. Maximum length 255.
$rdTypeVARCHAR = 12
# Variable-length character string. Maximum length determined by data source.
$rdTypeLONGVARCHAR = -1

# Variable-length binary data. Maximum length 255.
$rdTypeVARBINARY = -3
# Variable-length binary data. Maximum data source dependent.
$rdTypeLONGVARBINARY = -4

# Signed, exact numeric value with precision 3, scale 0; (signed: -128  n  127, unsigned: 0  n  255).
$rdTypeTINYINT = -6
# Fixed-length unicode character string. Length set by Size property.
$rdTypeWCHAR = -8
# Variable-length unicode character string.
$rdTypeWVARCHAR = -9
# Variable-length unicode character string. Maximum length determined by data source.
$rdTypeWLONGVARCHAR = -10

# DirectionConstants enum, 4 members.
#Direction Constants
#The parameter is used to pass information to the procedure.
$rdParamInput = 0
#The parameter is used to pass information both to and from the procedure.
$rdParamInputOutput = 1
#The parameter is used to return information from the procedure as in an output parameter in SQL.
$rdParamOutput = 2
#The parameter is used to return the return status value from a procedure.
$rdParamReturnValue = 3

#rdoLocaleIDConstants enum, 10 members.
#rdoLocaleID  Constants
#English
$rdLocaleEnglish = 1
#French
$rdLocaleFrench = 2
#German
$rdLocaleGerman = 3
#Italian
$rdLocaleItalian = 4
#Japanese
$rdLocaleJapanese = 5
#Spanish
$rdLocaleSpanish = 6
#Chinese
$rdLocaleChinese = 7
#Simplified Chinese
$rdLocaleSimplifiedChinese = 8
#Korean
$rdLocaleKorean = 9
#System
$rdLocaleSystem = 0

#LockTypeConstants enum, 5 members.

#Cursor is read-only. No updates are allowed.
$rdConcurReadOnly = 1

#Pessimistic concurrency.
$rdConcurLock = 2

#Optimistic concurrency based on row ID.
$rdConcurRowVer = 3

#Optimistic concurrency based on row values.
$rdConcurValues = 4

#Optimistic concurrency using batch mode updates. Status values returned for each row successfully updated.
$rdConcurBatch = 5

#OptionConstants enum, 4 members.
#Options Constants
#Public Enum OptionConstants
#Execute the query asynchronously.
$rdAsyncEnable = 32

#Use the ODBC SQLExecDirect API function to execute query.
$rdExecDirect = 64

#Download all the data for long character and long binary columns.
$rdFetchLongColumns = 128

#Download all the data for long character and long binary columns.
$rdBackgroundFetch = 256

#ResultsetTypeConstants enum, 4 members.
#Resultset Type Constants
#Fixed set, non-scrolling.
$rdOpenForwardOnly = 0

#Updatable, fixed set, scrollable query result set cursor.
$rdOpenKeyset = 1

#Updatable, dynamic set, scrollable query result set cursor.
$rdOpenDynamic = 2

#Read-only, fixed set.
$rdOpenStatic = 3

#QueryTypeConstants enum, 4 members.
#Query Type Constants
#Select
$rdQSelect = 0
#Action
$rdQAction = 1
#Procedural
$rdQProcedures = 2
#The query contains both action and select statements
$rdQCompound = 3
#SQLRetcodeConstants enum, 5 members.
#SQL Retcode Constants
#The operation is successful.
$rdSQLSuccess = 0
#The operation is successful, and additional information is available.
$rdSQLSuccessWithInfo = 1
#No additional data is available.
$rdSQLNoDataFound = 100
#An error occurred performing the operation.
$rdSQLError = -1
#The handle supplied is invalid.
$rdSQLInvalidHandle = -2

#RowStatusConstants enum, 5 members.

#The row has not been modified or has been updated successfully.
$rdRowUnmodified = 0
#The row has been modified and not updated in the database.
$rdRowModified = 1
#The row has been inserted with the AddNew method, but not yet inserted into the database.
$rdRowNew = 2
#The row has been deleted, but not yet deleted in the database.
$rdRowDeleted = 3
#The row has been deleted locally and in the database.
$rdRowDBDeleted = 4

#ColumnStatusConstants enum, 2 members.

#The row has not been modified or has been updated successfully.
$rdColUnmodified = 0
#The row has been modified.
$rdColModified = 1

#UpdateOperationConstants enum, 2 members.

#Uses an Update statement for each modified row.
$rdOperationUpdate = 0
#Uses a pair of Delete and Insert statements for each modified row.
$rdOperationDelIns = 1

#UpdateCriteriaConstants enum, 4 members.

#Uses just the key column(s) in the Where clause.
$rdCriteriaKey = 0
#Uses the key column(s) and all updated columns in the Where clause.
$rdCriteriaAllCols = 1
#Uses the key column(s) and all the columns in the Where clause.
$rdCriteriaUpdCols = 2
#Uses just the timestamp column if available (will generate a runtime error if no timestamp column is in the resultset).
$rdCriteriaTimeStamp = 3

#UpdateReturnCodeConstants enum, 4 members.

#The developer handled the update and was successful in doing so.
$rdUpdateSuccessful = 0
#The developer handled the update, was successful, but some rows produced collisions (batch mode only).
$rdUpdateWithCollisions = 1
#The developer attempted to handle the update, but encountered an error when doing so.
$rdUpdateFailed = 2
#The developer did not handle the update, RDO should continue notifying, and if no one handles the update RDO should update the data itself.
$rdUpdateNotHandled = 3
# Outlook 2019 
$olEas = 4
$olExchange = 0
$olHttp = 3
$olImap = 1
$olOtherAccount = 5
$olPop3 = 2
$olForward = 2
$olReply = 0
$olReplyAll = 1
$olReplyFolder = 3
$olRespond = 4
$olEmbedOriginalItem = 1
$olIncludeOriginalText = 2
$olIndentOriginalText = 3
$olLinkOriginalItem = 4
$olOmitOriginalText = 0
$olReplyTickOriginalText = 1000
$olUserPreference = 5
$olOpen = 0
$olPrompt = 2
$olSend = 1
$olDontShow = 0
$olMenu = 1
$olMenuAndToolbar = 2
$olExchangeAgentAddressEntry = 3
$olExchangeDistributionListAddressEntry = 1
$olExchangeOrganizationAddressEntry = 4
$olExchangePublicFolderAddressEntry = 2
$olExchangeRemoteUserAddressEntry = 5
$olExchangeUserAddressEntry = 0
$olLdapAddressEntry = 20
$olOtherAddressEntry = 40
$olOutlookContactAddressEntry = 10
$olOutlookDistributionListAddressEntry = 11
$olSmtpAddressEntry = 30
$olCustomAddressList = 4
$olExchangeContainer = 1
$olExchangeGlobalAddressList = 0
$olOutlookAddressList = 2
$olOutlookLdapAddressList = 3
$olAlignCenter = 1
$olAlignLeft = 0
$olAlignRight = 2
$olAlignmentLeft = 0
$olAlignmentRight = 1
$olAlwaysDelete = 1
$olAlwaysDeleteUnsupported = 2
$olDoNotDelete = 0
$olCopyAsAccept = 2
$olCreateAppointment = 1
$olPromptUser = 0
$olAppointmentTimeFieldEnd = 3
$olAppointmentTimeFieldNone = 1
$olAppointmentTimeFieldStart = 2
$olAttachmentBlockLevelNone = 0
$olAttachmentBlockLevelOpen = 1
$olByReference = 4
$olByValue = 1
$olEmbeddeditem = 5
$olOLE = 6
$olAutoDiscoverConnectionExternal = 1
$olAutoDiscoverConnectionInternal = 2
$olAutoDiscoverConnectionInternalDomain = 3
$olAutoDiscoverConnectionUnknown = 0
$olAutoPreviewAll = 0
$olAutoPreviewNone = 2
$olAutoPreviewUnread = 1
$olBackStyleOpaque = 1
$olBackStyleTransparent = 0
$olFormatHTML = 2
$olFormatPlain = 1
$olFormatRichText = 3
$olFormatUnspecified = 0
$olBorderStyleNone = 0
$olBorderStyleSingle = 1
$olBusinessCardTypeInterConnect = 1
$olBusinessCardTypeOutlook = 0
$olBusy = 2
$olFree = 0
$olOutOfOffice = 3
$olTentative = 1
$olWorkingElsewhere = 4
$olFreeBusyAndSubject = 1
$olFreeBusyOnly = 0
$olFullDetails = 2
$olCalendarMailFormatDailySchedule = 0
$olCalendarMailFormatEventList = 1
$olCalendarView5DayWeek = 4
$olCalendarViewDay = 0
$olCalendarViewMonth = 2
$olCalendarViewMultiDay = 3
$olCalendarViewWeek = 1
$olCategoryColorBlack = 15
$olCategoryColorBlue = 8
$olCategoryColorDarkBlue = 23
$olCategoryColorDarkGray = 14
$olCategoryColorDarkGreen = 20
$olCategoryColorDarkMaroon = 25
$olCategoryColorDarkOlive = 22
$olCategoryColorDarkOrange = 17
$olCategoryColorDarkPeach = 18
$olCategoryColorDarkPurple = 24
$olCategoryColorDarkRed = 16
$olCategoryColorDarkSteel = 12
$olCategoryColorDarkTeal = 21
$olCategoryColorDarkYellow = 19
$olCategoryColorGray = 13
$olCategoryColorGreen = 5
$olCategoryColorMaroon = 10
$olCategoryColorNone = 0
$olCategoryColorOlive = 7
$olCategoryColorOrange = 2
$olCategoryColorPeach = 3
$olCategoryColorPurple = 9
$olCategoryColorRed = 1
$olCategoryColorSteel = 11
$olCategoryColorTeal = 6
$olCategoryColorYellow = 4
$olCategoryShortcutKeyCtrlF10 = 10
$olCategoryShortcutKeyCtrlF11 = 11
$olCategoryShortcutKeyCtrlF12 = 12
$olCategoryShortcutKeyCtrlF2 = 2
$olCategoryShortcutKeyCtrlF3 = 3
$olCategoryShortcutKeyCtrlF4 = 4
$olCategoryShortcutKeyCtrlF5 = 5
$olCategoryShortcutKeyCtrlF6 = 6
$olCategoryShortcutKeyCtrlF7 = 7
$olCategoryShortcutKeyCtrlF8 = 8
$olCategoryShortcutKeyCtrlF9 = 9
$olCategoryShortcutKeyNone = 0
$olAutoColor = 0
$olColorAqua = 15
$olColorBlack = 1
$olColorBlue = 13
$olColorFuchsia = 14
$olColorGray = 8
$olColorGreen = 3
$olColorLime = 11
$olColorMaroon = 2
$olColorNavy = 5
$olColorOlive = 4
$olColorPurple = 6
$olColorRed = 10
$olColorSilver = 9
$olColorTeal = 7
$olColorWhite = 16
$olColorYellow = 12
$olComboBoxStyleCombo = 0
$olComboBoxStyleList = 1
$olContactPhoneAssistant = 0
$olContactPhoneBusiness = 1
$olContactPhoneBusiness2 = 2
$olContactPhoneBusinessFax = 3
$olContactPhoneCallback = 4
$olContactPhoneCar = 5
$olContactPhoneCompany = 6
$olContactPhoneHome = 7
$olContactPhoneHome2 = 8
$olContactPhoneHomeFax = 9
$olContactPhoneISDN = 10
$olContactPhoneMobile = 11
$olContactPhoneOther = 12
$olContactPhoneOtherFax = 13
$olContactPhonePager = 14
$olContactPhonePrimary = 15
$olContactPhoneRadio = 16
$olContactPhoneTelex = 17
$olContactPhoneTTYTTD = 18
$olFriday = 32
$olMonday = 2
$olSaturday = 64
$olSunday = 1
$olThursday = 16
$olTuesday = 4
$olWednesday = 8
$olTimeScale10Minutes = 2
$olTimeScale15Minutes = 3
$olTimeScale30Minutes = 4
$olTimeScale5Minutes = 0
$olTimeScale60Minutes = 5
$olTimeScale6Minutes = 1
$olAllCollapsed = 1
$olAllExpanded = 0
$olLastViewed = 2
$olFolderCalendar = 9
$olFolderConflicts = 19
$olFolderContacts = 10
$olFolderDeletedItems = 3
$olFolderDrafts = 16
$olFolderInbox = 6
$olFolderJournal = 11
$olFolderJunk = 23
$olFolderLocalFailures = 21
$olFolderManagedEmail = 29
$olFolderNotes = 12
$olFolderOutbox = 4
$olFolderSentMail = 5
$olFolderServerFailures = 22
$olFolderSuggestedContacts = 30
$olFolderSyncIssues = 20
$olFolderTasks = 13
$olFolderToDo = 28
$olPublicFoldersAllPublicFolders = 18
$olFolderRssFeeds = 25
$olDefaultDelegates = 6
$olDefaultMail = 1
$olDefaultMeeting = 2
$olDefaultMembers = 5
$olDefaultPickRooms = 8
$olDefaultSharingRequest = 4
$olDefaultSingleName = 7
$olDefaultTask = 3
$olDisplayModeNormal = 0
$olDisplayModePortraitReadingPane = 2
$olDisplayModePortraitView = 1
$olAgent = 3
$olDistList = 1
$olForum = 2
$olOrganization = 4
$olPrivateDistList = 5
$olRemoteUser = 6
$olUser = 0
$olFullItem = 1
$olHeaderOnly = 0
$olDragBehaviorDisabled = 0
$olDragBehaviorEnabled = 1
$olEditorHTML = 2
$olEditorRTF = 3
$olEditorText = 1
$olEditorWord = 4
$olEnterFieldBehaviorRecallSelection = 1
$olEnterFieldBehaviorSelectAll = 0
$olCachedConnectedDrizzle = 600
$olCachedConnectedFull = 700
$olCachedConnectedHeaders = 500
$olCachedDisconnected = 400
$olCachedOffline = 200
$olDisconnected = 300
$olNoExchange = 0
$olOffline = 100
$olOnline = 800
$olExchangeMailbox = 1
$olExchangePublicFolder = 2
$olNotExchange = 3
$olPrimaryExchangeMailbox = 0
$olAdditionalExchangeMailbox = 4
$olFolderDisplayFolderOnly = 1
$olFolderDisplayNoNavigation = 2
$olFolderDisplayNormal = 0
$olFormatCurrencyDecimal = 1
$olFormatCurrencyNonDecimal = 2
$olFormatDateTimeBestFit = 17
$olFormatDateTimeLongDate = 6
$olFormatDateTimeLongDateReversed = 7
$OlFormatDateTimeLongDayDate = 5
$olFormatDateTimeLongDayDateTime = 1
$olFormatDateTimeLongTime = 15
$olFormatDateTimeShortDate = 8
$olFormatDateTimeShortDateNumOnly = 9
$olFormatDateTimeShortDateTime = 2
$olFormatDateTimeShortDayDate = 13
$olFormatDateTimeShortDayDateTime = 3
$olFormatDateTimeShortDayMonth = 10
$olFormatDateTimeShortDayMonthDateTime = 4
$olFormatDateTimeShortMonthYear = 11
$olFormatDateTimeShortMonthYearNumOnly = 12
$olFormatDateTimeShortTime = 16
$olFormatDurationLong = 2
$olFormatDurationLongBusiness = 4
$olFormatDurationShort = 1
$olFormatDurationShortBusiness = 3
$olFormatEnumBitmap = 1
$olFormatEnumText = 2
$olFormatIntegerComputer1 = 2
$olFormatIntegerComputer2 = 3
$olFormatIntegerComputer3 = 4
$olFormatIntegerPlain = 1
$olFormatKeywordsText = 1
$olFormatNumber1Decimal = 3
$olFormatNumber2Decimal = 4
$olFormatNumberAllDigits = 1
$olFormatNumberComputer1 = 6
$olFormatNumberComputer2 = 7
$olFormatNumberComputer3 = 8
$olFormatNumberRaw = 9
$olFormatNumberScientific = 5
$olFormatNumberTruncated = 2
$olFormatPercent1Decimal = 2
$olFormatPercent2Decimal = 3
$olFormatPercentAllDigits = 4
$olFormatPercentRounded = 1
$olFormatSmartFromFromOnly = 2
$olFormatSmartFromFromTo = 1
$olFormatTextText = 1
$olFormatYesNoIcon = 4
$olFormatYesNoOnOff = 2
$olFormatYesNoTrueFalse = 3
$olFormatYesNoYesNo = 1
$olFormRegionIconDefault = 1
$olFormRegionIconEncrypted = 9
$olFormRegionIconForwarded = 5
$olFormRegionIconPage = 11
$olFormRegionIconRead = 3
$olFormRegionIconRecurring = 12
$olFormRegionIconReplied = 4
$olFormRegionIconSigned = 8
$olFormRegionIconSubmitted = 7
$olFormRegionIconUnread = 2
$olFormRegionIconUnsent = 6
$olFormRegionIconWindow = 10
$olFormRegionCompose = 1
$olFormRegionPreview = 2
$olFormRegionRead = 0
$olFormRegionTypeAdjoining = 1
$olFormRegionTypeSeparate = 0
$olDefaultRegistry = 0
$olFolderRegistry = 3
$olOrganizationRegistry = 4
$olPersonalRegistry = 2
$olFemale = 1
$olMale = 2
$olUnspecified = 0
$olGridLineDashes = 3
$olGridLineLargeDots = 2
$olGridLineNone = 0
$olGridLineSmallDots = 1
$olGridLineSolid = 4
$olCustomFoldersGroup = 0
$olFavoriteFoldersGroup = 4
$olMyFoldersGroup = 1
$olOtherFoldersGroup = 3
$olPeopleFoldersGroup = 2
$olReadOnlyGroup = 6
$olRoomsGroup = 5
$olHorizontalLayoutAlignCenter = 1
$olHorizontalLayoutGrow = 3
$olHorizontalLayoutAlignLeft = 0
$olHorizontalLayoutAlignRight = 2
$olIconAutoArrange = 2
$olIconDoNotArrange = 0
$olIconLineUp = 1
$olIconSortAndAutoArrange = 3
$olIconViewLarge = 0
$olIconViewList = 2
$olIconViewSmall = 1
$olImportanceHigh = 2
$olImportanceLow = 0
$olImportanceNormal = 1
$olDiscard = 1
$olPromptForSave = 2
$olSave = 0
$olAppointmentItem = 1
$olContactItem = 2
$olDistributionListItem = 7
$olJournalItem = 4
$olMailItem = 0
$olNoteItem = 5
$olPostItem = 6
$olTaskItem = 3
$olAssociatedContact = 1
$olBusiness = 2
$olHome = 1
$olNone = 0
$olOther = 3
$olBCC = 3
$olCC = 2
$olOriginator = 0
$olTo = 1
$olMarkComplete = 5
$olMarkNextWeek = 3
$olMarkNoDate = 4
$olMarkThisWeek = 2
$olMarkToday = 0
$olMarkTomorrow = 1
$olMatchEntryComplete = 1
$olMatchEntryFirstLetter = 0
$olMatchEntryNone = 2
$olOptional = 2
$olOrganizer = 0
$olRequired = 1
$olResource = 3
$olMeetingAccepted = 3
$olMeetingDeclined = 4
$olMeetingTentative = 2
$olMeeting = 1
$olMeetingCanceled = 5
$olMeetingReceived = 3
$olMeetingReceivedAndCanceled = 7
$olNonMeeting = 0
$olMouseButtonLeft = 1
$olMouseButtonRight = 2
$olMouseButtonMiddle = 4
$olMousePointerAppStarting = 13
$olMousePointerArrow = 1
$olMousePointerCross = 2
$olMousePointerCustom = 99
$olMousePointerDefault = 0
$olMousePointerHelp = 14
$olMousePointerHourGlass = 11
$olMousePointerIBeam = 3
$olMousePointerNoDrop = 12
$olMousePointerSizeAll = 15
$olMousePointerSizeNESW = 6
$olMousePointerSizeNS = 7
$olMousePointerSizeNWSE = 8
$olMousePointerSizeWE = 9
$olMousePointerUpArrow = 10
$olAlwaysMultiLine = 2
$olAlwaysSingleLine = 1
$olWidthMultiLine = 0
$olMultiSelectExtended = 2
$olMultiSelectMulti = 1
$olMultiSelectSingle = 0
$olModuleCalendar = 1
$olModuleContacts = 2
$olModuleFolderList = 6
$olModuleJournal = 4
$olModuleMail = 0
$olModuleNotes = 5
$olModuleShortcuts = 7
$olModuleSolutions = 8
$olModuleTasks = 3
$olAccount = 105
$olAccountRuleCondition = 135
$olAccounts = 106
$olAction = 32
$olActions = 33
$olAddressEntries = 21
$olAddressEntry = 8
$olAddressList = 7
$olAddressLists = 20
$olAddressRuleCondition = 170
$olApplication = 0
$olAppointment = 26
$olAssignToCategoryRuleAction = 122
$olAttachment = 5
$olAttachments = 18
$olAttachmentSelection = 169
$olAutoFormatRule = 147
$olAutoFormatRules = 148
$olCalendarModule = 159
$olCalendarSharing = 151
$olCategories = 153
$olCategory = 152
$olCategoryRuleCondition = 130
$olClassBusinessCardView = 168
$olClassCalendarView = 139
$olClassCardView = 138
$olClassIconView = 137
$olClassNavigationPane = 155
$olClassPeopleView = 183
$olClassTableView = 136
$olClassTimeLineView = 140
$olClassTimeZone = 174
$olClassTimeZones = 175
$olColumn = 154
$olLargeIcon = 0
$olSmallIcon = 1
$olPageTypePlanner = 0
$olPageTypeTracker = 1
$olFolderList = 2
$olNavigationPane = 4
$olOutlookBar = 1
$olPreview = 3
$olDoNotForward = 1
$olPermissionTemplate = 2
$olUnrestricted = 0
$olPassport = 2
$olUnknown = 0
$olWindows = 1
$olPictureAlignmentLeft = 0
$olPictureAlignmentTop = 1
$olShowNone = 0
$olShowTo = 1
$olShowToCc = 2
$olShowToCcBcc = 3
$olApptException = 3
$olApptMaster = 1
$olApptNotRecurring = 0
$olApptOccurrence = 2
$olRecursDaily = 0
$olRecursMonthly = 2
$olRecursMonthNth = 3
$olRecursWeekly = 1
$olRecursYearly = 5
$olRecursYearNth = 6
$olStrong = 1
$olWeak = 0
$olMarkedForCopy = 3
$olMarkedForDelete = 4
$olMarkedForDownload = 2
$olRemoteStatusNone = 0
$olUnMarked = 1
$olResponseAccepted = 3
$olResponseDeclined = 4
$olResponseNone = 0
$olResponseNotResponded = 5
$olResponseOrganized = 1
$olResponseTentative = 2
$olRuleActionAssignToCategory = 2
$olRuleActionCcMessage = 27
$olRuleActionClearCategories = 30
$olRuleActionCopyToFolder = 5
$olRuleActionCustomAction = 22
$olRuleActionDefer = 28
$olRuleActionDelete = 3
$olRuleActionDeletePermanently = 4
$olRuleActionDesktopAlert = 24
$olRuleActionFlagClear = 13
$olRuleActionFlagColor = 12
$olRuleActionFlagForActionInDays = 11
$olRuleActionForward = 6
$olRuleActionForwardAsAttachment = 7
$olRuleActionImportance = 14
$olRuleActionMarkAsTask = 41
$olRuleActionMarkRead = 19
$olRuleActionMoveToFolder = 1
$olRuleActionNewItemAlert = 23
$olRuleActionNotifyDelivery = 26
$olRuleActionNotifyRead = 25
$olRuleActionPlaySound = 17
$olRuleActionPrint = 16
$olRuleActionRedirect = 8
$olRuleActionRunScript = 20
$olRuleActionSensitivity = 15
$olRuleActionServerReply = 9
$olRuleActionStartApplication = 18
$olRuleActionStop = 21
$olRuleActionTemplate = 10
$olRuleActionUnknown = 0
$olConditionAccount = 3
$olConditionAnyCategory = 29
$olConditionBody = 13
$olConditionBodyOrSubject = 14
$olConditionCategory = 18
$olConditionCc = 9
$olConditionDateRange = 22
$olConditionFlaggedForAction = 8
$olConditionFormName = 23
$olConditionFrom = 1
$olConditionFromAnyRssFeed = 31
$olConditionFromRssFeed = 30
$olConditionHasAttachment = 20
$olConditionImportance = 6
$olConditionLocalMachineOnly = 27
$olConditionMeetingInviteOrUpdate = 26
$olConditionMessageHeader = 15
$olConditionNotTo = 11
$olConditionOnlyToMe = 4
$olConditionOOF = 19
$olConditionOtherMachine = 28
$olConditionProperty = 24
$olConditionRecipientAddress = 16
$olConditionSenderAddress = 17
$olConditionSenderInAddressBook = 25
$olConditionSensitivity = 7
$olConditionSentTo = 12
$olConditionSizeRange = 21
$olConditionSubject = 2
$olConditionTo = 5
$olConditionToOrCc = 10
$olConditionUnknown = 0
$olRuleExecuteAllMessages = 0
$olRuleExecuteReadMessages = 1
$olRuleExecuteUnreadMessages = 2
$olRuleReceive = 0
$olRuleSend = 1
$olDoc = 4
$olHTML = 5
$olICal = 8
$olMHTML = 10
$olMSG = 3
$olMSGUnicode = 9
$olRTF = 1
$olTemplate = 2
$olTXT = 0
$olVCal = 7
$olVCard = 6
$olScrollBarsBoth = 3
$olScrollBarsHorizontal = 1
$olScrollBarsNone = 0
$olScrollBarsVertical = 2
$olSearchScopeAllFolders = 1
$olSearchScopeAllOutlookItems = 2
$olSearchScopeCurrentFolder = 0
$olSearchScopeCurrentStore = 4
$olSearchScopeSubfolders = 3
$olConversationHeaders = 1
$olAttachmentWell = 4
$olDailyTaskList = 3
$olToDoBarAppointmentList = 2
$olToDoBarTaskList = 1
$olViewList = 0
$olConfidential = 3
$olNormal = 0
$olPersonal = 1
$olPrivate = 2
$olSharingMsgTypeInvite = 2
$olSharingMsgTypeInviteAndRequest = 3
$olSharingMsgTypeRequest = 1
$olSharingMsgTypeResponseAllow = 4
$olSharingMsgTypeResponseDeny = 5
$olSharingMsgTypeUnknown = 0
$olProviderExchange = 1
$olProviderFederate = 7
$olProviderICal = 4
$olProviderPubCal = 3
$olProviderRSS = 6
$olProviderSharePoint = 5
$olProviderUnknown = 0
$olProviderWebCal = 2
$olShiftStateShiftMask = 1
$olShiftStateCtrlMask = 2
$olShiftStateAltMask = 4
$olNoItemCount = 0
$olShowTotalItemCount = 2
$olShowUnreadItemCount = 1
$olHideInDefaultModules = 0
$olShowInDefaultModules = 1
$olAscending = 1
$olDescending = 2
$olSortNone = 0
$olSpecialFolderAllTasks = 0
$olSpecialFolderReminders = 1
$olIdentifyByEntryID = 1
$olIdentifyByMessageClass = 2
$olIdentifyBySubject = 0
$olStoreANSI = 3
$olStoreDefault = 1
$olStoreUnicode = 2
$olSyncStarted = 1
$olSyncStopped = 0
$olHiddenItems = 1
$olUserItems = 0
$olTaskDelegationAccepted = 2
$olTaskDelegationDeclined = 3
$olTaskDelegationUnknown = 1
$olTaskNotDelegated = 0
$olDelegatedTask = 1
$olNewTask = 0
$olOwnTask = 2
$olFinalStatus = 3
$olUpdate = 2
$olTaskAccept = 2
$olTaskAssign = 1
$olTaskDecline = 3
$olTaskSimple = 0
$olTaskComplete = 2
$olTaskDeferred = 4
$olTaskInProgress = 1
$olTaskNotStarted = 0
$olTaskWaiting = 3
$olTextAlignCenter = 2
$olTextAlignLeft = 1
$olTextAlignRight = 3
$olTimelineViewDay = 0
$olTimelineViewMonth = 2
$olTimelineViewWeek = 1
$olTimeStyleShortDuration = 4
$olTimeStyleTimeDuration = 1
$olTimeStyleTimeOnly = 0
$olTrackingDelivered = 1
$olTrackingNone = 0
$olTrackingNotDelivered = 2
$olTrackingNotRead = 3
$olTrackingRead = 6
$olTrackingRecallFailure = 4
$olTrackingRecallSuccess = 5
$olTrackingReplied = 7
$olGroupCalendarFolder = 1
$olGroupMailFolder = 0
$PrivateGroup = 1
$PublicGroup = 2
$olCombination = 19
$olCurrency = 14
$olDateTime = 5
$olDuration = 7
$olEnumeration = 21
$olFormula = 18
$olInteger = 20
$olKeywords = 11
$olNumber = 3
$olOutlookInternal = 0
$olPercent = 12
$olSmartFrom = 22
$olText = 1
$olYesNo = 6
$olVerticalLayoutAlignBottom = 2
$olVerticalLayoutAlignGrow = 3
$olVerticalLayoutAlignMiddle = 1
$olVerticalLayoutAlignTop = 0
$olViewSaveOptionAllFoldersOfType = 2
$olViewSaveOptionThisFolderEveryone = 0
$olViewSaveOptionThisFolderOnlyMe = 1
$olBusinessCardView = 5
$olCalendarView = 2
$olCardView = 1
$olDailyTaskListView = 1
$olIconView = 3
$olPeopleView = 7
$olTableView = 0
$olTimelineView = 4
$olMaximized = 0
$olMinimized = 1
$olNormalWindow = 2
#$olFolderCalendar = 9
#$olFolderContacts = 10
#$olFolderDeletedItems = 3
#$olFolderDrafts = 16
#$olFolderInbox = 6
#$olFolderJournal = 11
#$olFolderNotes = 12
#$olFolderOutbox = 4
#$olFolderSentMail = 5
#$olFolderTasks = 13
#Word 2019
$wdAlertsAll = -1
$wdAlertsMessageBox = -2
$wdAlertsNone = 0
$wdCenter = 1
$wdLeft = 0
$wdRight = 2
$wdIndent = 1
$wdMargin = 0
$wdSessionStartSet = 1
$wdTemplateSet = 2
$wdNumeralArabic = 0
$wdNumeralContext = 2
$wdNumeralHindi = 1
$wdNumeralSystem = 3
$wdBoth = 3
$wdFinalYaa = 2
$wdInitialAlef = 1
$wdNone = 0
$wdIcons = 1
$wdTiled = 0
$wdAutoFitContent = 1
$wdAutoFitFixed = 0
$wdAutoFitWindow = 2
$wdAutoClose = 3
$wdAutoExec = 0
$wdAutoExit = 4
$wdAutoNew = 1
$wdAutoOpen = 2
$wdAutoSync = 5
$wdAutoVersionOff = 0
$wdAutoVersionOnClose = 1
$wdBaselineAlignAuto = 4
$wdBaselineAlignBaseline = 2
$wdBaselineAlignCenter = 1
$wdBaselineAlignFarEast50 = 3
$wdBaselineAlignTop = 0
$wdSortByLocation = 1
$wdSortByName = 0
$wdBorderDistanceFromPageEdge = 1
$wdBorderDistanceFromText = 0
$wdBorderBottom = -3
$wdBorderDiagonalDown = -7
$wdBorderDiagonalUp = -8
$wdBorderHorizontal = -5
$wdBorderLeft = -2
$wdBorderRight = -4
$wdBorderTop = -1
$wdBorderVertical = -6
$wdColumnBreak = 8
$wdLineBreak = 6
$wdLineBreakClearLeft = 9
$wdLineBreakClearRight = 10
$wdPageBreak = 7
$wdSectionBreakContinuous = 3
$wdSectionBreakEvenPage = 4
$wdSectionBreakNextPage = 2
$wdSectionBreakOddPage = 5
$wdTextWrappingBreak = 11
$wdBrowserLevelMicrosoftInternetExplorer5 = 1
$wdBrowserLevelMicrosoftInternetExplorer6 = 2
$wdBrowserLevelV4 = 0
$wdBrowseComment = 3
$wdBrowseEdit = 10
$wdBrowseEndnote = 5
$wdBrowseField = 6
$wdBrowseFind = 11
$wdBrowseFootnote = 4
$wdBrowseGoTo = 12
$wdBrowseGraphic = 8
$wdBrowseHeading = 9
$wdBrowsePage = 1
$wdBrowseSection = 2
$wdBrowseTable = 7
$wdTypeAutoText = 9
$wdTypeBibliography = 34
$wdTypeCoverPage = 2
$wdTypeCustom1 = 29
$wdTypeCustom2 = 30
$wdTypeCustom3 = 31
$wdTypeCustom4 = 32
$wdTypeCustom5 = 33
$wdTypeCustomAutoText = 23
$wdTypeCustomBibliography = 35
$wdTypeCustomCoverPage = 16
$wdTypeCustomEquations = 17
$wdTypeCustomFooters = 18
$wdTypeCustomHeaders = 19
$wdTypeCustomPageNumber = 20
$wdTypeCustomPageNumberBottom = 26
$wdTypeCustomPageNumberPage = 27
$wdTypeCustomPageNumberTop = 25
$wdTypeCustomQuickParts = 15
$wdTypeCustomTableOfContents = 28
$wdTypeCustomTables = 21
$wdTypeCustomTextBox = 24
$wdTypeCustomWatermarks = 22
$wdTypeEquations = 3
$wdTypeFooters = 4
$wdTypeHeaders = 5
$wdTypePageNumber = 6
$wdTypePageNumberBottom = 12
$wdTypePageNumberPage = 13
$wdTypePageNumberTop = 11
$wdTypeQuickParts = 1
$wdTypeTableOfContents = 14
$wdTypeTables = 7
$wdTypeTextBox = 10
$wdPropertyAppName = 9
$wdPropertyAuthor = 3
$wdPropertyBytes = 22
$wdPropertyCategory = 18
$wdPropertyCharacters = 16
$wdPropertyCharsWSpaces = 30
$wdPropertyComments = 5
$wdPropertyCompany = 21
$wdPropertyFormat = 19
$wdPropertyHiddenSlides = 27
$wdPropertyHyperlinkBase = 29
$wdPropertyKeywords = 4
$wdPropertyLastAuthor = 7
$wdPropertyLines = 23
$wdPropertyManager = 20
$wdPropertyMMClips = 28
$wdPropertyNotes = 26
$wdPropertyPages = 14
$wdPropertyParas = 24
$wdPropertyRevision = 8
$wdPropertySecurity = 17
$wdPropertySlides = 25
$wdPropertySubject = 2
$wdPropertyTemplate = 6
$wdPropertyTimeCreated = 11
$wdPropertyTimeLastPrinted = 10
$wdPropertyTimeLastSaved = 12
$wdPropertyTitle = 1
$wdPropertyVBATotalEdit = 13
$wdPropertyWords = 15
$wdStyleBlockQuotation = -85
$wdStyleBodyText = -67
$wdStyleBodyText2 = -81
$wdStyleBodyText3 = -82
$wdStyleBodyTextFirstIndent = -78
$wdStyleBodyTextFirstIndent2 = -79
$wdStyleBodyTextIndent = -68
$wdStyleBodyTextIndent2 = -83
$wdStyleBodyTextIndent3 = -84
$wdStyleBookTitle = -265
$wdStyleCaption = -35
$wdStyleClosing = -64
$wdStyleCommentReference = -40
$wdStyleCommentText = -31
$wdStyleDate = -77
$wdStyleDefaultParagraphFont = -66
$wdStyleEmphasis = -89
$wdStyleEndnoteReference = -43
$wdStyleEndnoteText = -44
$wdStyleEnvelopeAddress = -37
$wdStyleEnvelopeReturn = -38
$wdStyleFooter = -33
$wdStyleFootnoteReference = -39
$wdStyleFootnoteText = -30
$wdStyleHeader = -32
$wdStyleHeading1 = -2
$wdStyleHeading2 = -3
$wdStyleHeading3 = -4
$wdStyleHeading4 = -5
$wdStyleHeading5 = -6
$wdStyleHeading6 = -7
$wdStyleHeading7 = -8
$wdStyleHeading8 = -9
$wdStyleHeading9 = -10
$wdCalendarArabic = 1
$wdCalendarHebrew = 2
$wdCalendarJapan = 4
$wdCalendarKorean = 6
$wdCalendarSakaEra = 7
$wdCalendarTaiwan = 3
$wdCalendarThai = 5
$wdCalendarTranslitEnglish = 8
$wdCalendarTranslitFrench = 9
$wdCalendarUmalqura = 13
$wdCalendarWestern = 0
$wdCalendarTypeBidi = 99
$wdCalendarTypeGregorian = 100
$wdCaptionEquation = -3
$wdCaptionFigure = -1
$wdCaptionTable = -2
$wdCaptionNumberStyleArabic = 0
$wdCaptionNumberStyleArabicFullWidth = 14
$wdCaptionNumberStyleArabicLetter1 = 46
$wdCaptionNumberStyleArabicLetter2 = 48
$wdCaptionNumberStyleChosung = 25
$wdCaptionNumberStyleGanada = 24
$wdCaptionNumberStyleHanjaRead = 41
$wdCaptionNumberStyleHanjaReadDigit = 42
$wdCaptionNumberStyleHebrewLetter1 = 45
$wdCaptionNumberStyleHebrewLetter2 = 47
$wdCaptionNumberStyleHindiArabic = 51
$wdCaptionNumberStyleHindiCardinalText = 52
$wdCaptionNumberStyleHindiLetter1 = 49
$wdCaptionNumberStyleHindiLetter2 = 50
$wdCaptionNumberStyleKanji = 10
$wdCaptionNumberStyleKanjiDigit = 11
$wdCaptionNumberStyleKanjiTraditional = 16
$wdCaptionNumberStyleLowercaseLetter = 4
$wdCaptionNumberStyleLowercaseRoman = 2
$wdCaptionNumberStyleNumberInCircle = 18
$wdCaptionNumberStyleSimpChinNum2 = 38
$wdCaptionNumberStyleSimpChinNum3 = 39
$wdCaptionNumberStyleThaiArabic = 54
$wdCaptionNumberStyleThaiCardinalText = 55
$wdCaptionNumberStyleThaiLetter = 53
$wdCaptionNumberStyleTradChinNum2 = 34
$wdCaptionNumberStyleTradChinNum3 = 35
$wdCaptionNumberStyleUppercaseLetter = 3
$wdCaptionNumberStyleUppercaseRoman = 1
$wdCaptionNumberStyleVietCardinalText = 56
$wdCaptionNumberStyleZodiac1 = 30
$wdCaptionNumberStyleZodiac2 = 31
$wdCaptionPositionAbove = 0
$wdCaptionPositionBelow = 1
$wdCellColorByAuthor = -1
$wdCellColorLightBlue = 2
$wdCellColorLightGray = 7
$wdCellColorLightGreen = 6
$wdCellColorLightOrange = 5
$wdCellColorLightPurple = 4
$wdCellColorLightYellow = 3
$wdCellColorNoHighlight = 0
$wdCellColorPink = 1
$wdCellAlignVerticalBottom = 3
$wdCellAlignVerticalCenter = 1
$wdCellAlignVerticalTop = 0
$wdFullWidth = 7
$wdHalfWidth = 6
$wdHiragana = 9
$wdKatakana = 8
$wdLowerCase = 0
$wdNextCase = -1
$wdTitleSentence = 4
$wdTitleWord = 2
$wdToggleCase = 5
$wdUpperCase = 1
$wdWidthFullWidth = 7
$wdWidthHalfWidth = 6
$wdCheckInMajorVersion = 1
$wdCheckInMinorVersion = 0
$wdCheckInOverwriteVersion = 2
$wdAlwaysConvert = 1
$wdAskToConvert = 3
$wdAskToNotConvert = 2
$wdNeverConvert = 0
$wdCollapseEnd = 0
$wdCollapseStart = 1
$wdColorAqua = 0x33CCCC
$wdColorAutomatic = 0x000000
$wdColorBlack = 0x000000
$wdColorBlue = 0x0000FF
$wdColorBlueGray = 0x666699
$wdColorBrightGreen = 0x00FF00
$wdColorBrown = 0x993300
$wdColorDarkBlue = 0x000080
$wdColorDarkGreen = 0x003300
$wdColorDarkRed = 0x800000
$wdColorDarkTeal = 0x003366
$wdColorDarkYellow = 0x808000
$wdColorGold = 0xFFCC00
$wdColorGray05 = 0xF3F3F3
$wdColorGray10 = 0xE6E6E6
$wdColorGray125 = 0xE0E0E0
$wdColorGray15 = 0xD9D9D9
$wdColorGray20 = 0xCCCCCC
$wdColorGray25 = 0xC0C0C0
$wdColorGray30 = 0xB3B3B3
$wdColorGray35 = 0xA6A6A6
$wdColorGray375 = 0xA0A0A0
$wdColorGray40 = 0x999999
$wdColorGray45 = 0x8C8C8C
$wdColorGray50 = 0x808080
$wdColorGray55 = 0x737373
$wdColorGray60 = 0x666666
$wdColorGray625 = 0x606060
$wdColorGray65 = 0x595959
$wdColorGray70 = 0x4C4C4C
$wdColorGray75 = 0x404040
$wdColorGray80 = 0x333333
$wdColorGray85 = 0x262626
$wdColorGray875 = 0x202020
$wdColorGray90 = 0x191919
$wdColorGray95 = 0x0C0C0C
$wdColorGreen = 0x008000
$wdColorIndigo = 0x333399
$wdColorLavender = 0xCC99FF
$wdColorLightBlue = 0x3366FF
$wdColorLightGreen = 0xCCFFCC
$wdColorLightOrange = 0xFF9900
$wdColorLightTurquoise = 0xCCFFFF
$wdColorLightYellow = 0xFFFF99
$wdColorLime = 0x99CC00
$wdColorOliveGreen = 0x333300
$wdColorOrange = 0xFF6600
$wdColorPaleBlue = 0x99CCFF
$wdColorPink = 0xFF00FF
$wdColorPlum = 0x993366
$wdColorRed = 0xFF0000
$wdColorRose = 0xFF99CC
$wdColorSeaGreen = 0x339966
$wdColorSkyBlue = 0x00CCFF
$wdColorTan = 0xFFCC99
$wdColorTeal = 0x008080
$wdColorTurquoise = 0x00FFFF
$wdColorViolet = 0x800080
$wdColorWhite = 0xFFFFFF
$wdColorYellow = 0xFFFF00
$wdColumnWidthDefault = 2
$wdColumnWidthNarrow = 1
$wdColumnWidthWide = 3
$wdCompareDestinationNew = 2
$wdCompareDestinationOriginal = 0
$wdCompareDestinationRevised = 1
$wdCompareTargetCurrent = 1
$wdCompareTargetNew = 2
$wdCompareTargetSelected = 0
$wdAlignTablesRowByRow = 39
$wdApplyBreakingRules = 46
$wdAutospaceLikeWW7 = 38
$wdConvMailMergeEsc = 6
$wdDontAdjustLineHeightInTable = 36
$wdDontBalanceSingleByteDoubleByteWidth = 16
$wdDontBreakWrappedTables = 43
$wdDontSnapTextToGridInTableWithObjects = 44
$wdDontULTrailSpace = 15
$wdDontUseAsianBreakRulesInGrid = 48
$wdDontUseHTMLParagraphAutoSpacing = 35
$wdDontWrapTextWithPunctuation = 47
$wdExactOnTop = 28
$wdExpandShiftReturn = 14
$wdFootnoteLayoutLikeWW8 = 34
$wdForgetLastTabAlignment = 37
$wdGrowAutofit = 50
$wdLayoutRawTableWidth = 40
$wdLayoutTableRowsApart = 41
$wdLeaveBackslashAlone = 13
$wdLineWrapLikeWord6 = 32
$wdMWSmallCaps = 22
$wdNoColumnBalance = 5
$wdNoExtraLineSpacing = 23
$wdNoLeading = 20
$wdNoSpaceForUL = 21
$wdNoSpaceRaiseLower = 2
$wdNoTabHangIndent = 1
$wdOrigWordTableRules = 9
$wdPrintBodyTextBeforeHeader = 19
$wdPrintColBlack = 3
$wdSelectFieldWithFirstOrLastCharacter = 45
$wdShapeLayoutLikeWW8 = 33
$wdShowBreaksInFrames = 11
$wdCurrent = 65535
$wdWord2003 = 11
$wdWord2007 = 12
$wdWord2010 = 14
$wdWord2013 = 15
$wdEvenColumnBanding = 7
$wdEvenRowBanding = 3
$wdFirstColumn = 4
$wdFirstRow = 0
$wdLastColumn = 5
$wdLastRow = 1
$wdNECell = 8
$wdNWCell = 9
$wdOddColumnBanding = 6
$wdOddRowBanding = 2
$wdSECell = 10
$wdSWCell = 11
$wdAutoPosition = 0
$wdBackward = -1073741823
$wdCreatorCode = 1297307460
$wdFirst = 1
$wdForward = 1073741823
$wdToggle = 9999998
$wdUndefined = 9999999
$wdContentControlBoundingBox = 0
$wdContentControlTags = 1
$wdContentControlHidden = 2
$wdContentControlDateStorageDate = 1
$wdContentControlDateStorageDateTime = 2
$wdContentControlDateStorageText = 0
$wdContentControlLevelCell = 3
$wdContentControlLevelInline = 0
$wdContentControlLevelParagraph = 1
$wdContentControlLevelRow = 2
$wdContentControlBuildingBlockGallery = 5
$wdContentControlCheckbox = 8
$wdContentControlComboBox = 3
$wdContentControlDate = 6
$wdContentControlGroup = 7
$wdContentControlDropdownList = 4
$wdContentControlPicture = 2
$wdContentControlRepeatingSection = 9
$wdContentControlRichText = 0
$wdContentControlText = 1
$wdContinueDisabled = 0
$wdContinueList = 2
$wdResetList = 1
$wdArgentina = 54
$wdBrazil = 55
$wdCanada = 2
$wdChile = 56
$wdChina = 86
$wdDenmark = 45
$wdFinland = 358
$wdFrance = 33
$wdGermany = 49
$wdIceland = 354
$wdItaly = 39
$wdJapan = 81
$wdKorea = 82
$wdLatinAmerica = 3
$wdMexico = 52
$wdNetherlands = 31
$wdNorway = 47
$wdPeru = 51
$wdSpain = 34
$wdSweden = 46
$wdTaiwan = 886
$wdUK = 44
$wdUS = 1
$wdVenezuela = 58
$wdCursorMovementLogical = 0
$wdCursorMovementVisual = 1
$wdCursorIBeam = 1
$wdCursorNormal = 2
$wdCursorNorthwestArrow = 3
$wdCursorWait = 0
$wdCustomLabelA4 = 2
$wdCustomLabelA4LS = 3
$wdCustomLabelA5 = 4
$wdCustomLabelA5LS = 5
$wdCustomLabelB4JIS = 13
$wdCustomLabelB5 = 6
$wdCustomLabelFanfold = 8
$wdCustomLabelHigaki = 11
$wdCustomLabelHigakiLS = 12
$wdCustomLabelLetter = 0
$wdCustomLabelLetterLS = 1
$wdCustomLabelMini = 7
$wdCustomLabelVertHalfSheet = 9
$wdCustomLabelVertHalfSheetLS = 10
$wdDateLanguageBidi = 10
$wdDateLanguageLatin = 1033
$wdAutoRecoverPath = 5
$wdBorderArtPath = 19
$wdCurrentFolderPath = 14
$wdDocumentsPath = 0
$wdGraphicsFiltersPath = 10
$wdPicturesPath = 1
$wdProgramPath = 9
$wdProofingToolsPath = 12
$wdStartupPath = 8
$wdStyleGalleryPath = 15
$wdTempFilePath = 13
$wdTextConvertersPath = 11
$wdToolsPath = 6
$wdTutorialPath = 7
$wdUserOptionsPath = 4
$wdUserTemplatesPath = 2
$wdWorkgroupTemplatesPath = 3
$wdWord10ListBehavior = 2
$wdWord8ListBehavior = 0
$wdWord9ListBehavior = 1
$wdWord8TableBehavior = 0
$wdWord9TableBehavior = 1
$wdDeleteCellsEntireColumn = 3
$wdDeleteCellsEntireRow = 2
$wdDeleteCellsShiftLeft = 0
$wdDeleteCellsShiftUp = 1
$wdDeletedTextMarkBold = 5
$wdDeletedTextMarkCaret = 2
$wdDeletedTextMarkColorOnly = 9
$wdDeletedTextMarkDoubleUnderline = 8
$wdDeletedTextMarkHidden = 0
$wdDeletedTextMarkItalic = 6
$wdDeletedTextMarkNone = 4
$wdDeletedTextMarkPound = 3
$wdDeletedTextMarkStrikeThrough = 1
$wdDeletedTextMarkUnderline = 7
$wdDeletedTextMarkDoubleStrikeThrough = 10
$wdDiacriticColorBidi = 0
$wdDiacriticColorLatin = 1
$wdGrammar = 1
$wdHangulHanjaConversion = 8
$wdHangulHanjaConversionCustom = 9
$wdHyphenation = 3
$wdSpelling = 0
$wdSpellingComplete = 4
$wdSpellingCustom = 5
$wdSpellingLegal = 6
$wdSpellingMedical = 7
$wdThesaurus = 2
$wd70 = 0
$wd70FE = 1
$wd80 = 2
$wdInsertContent = 0
$wdInsertPage = 2
$wdInsertParagraph = 1
$wdLeftToRight = 0
$wdRightToLeft = 1
$wdDocumentEmail = 2
$wdDocumentLetter = 1
$wdDocumentNotSpecified = 0
$wdDocument = 1
$wdEmailMessage = 0
$wdWebPage = 2
$wdTypeDocument = 0
$wdTypeFrameset = 2
$wdTypeTemplate = 1
$wdDocumentViewLtr = 1
$wdDocumentViewRtl = 0
$wdDropMargin = 2
$wdDropNone = 0
$wdDropNormal = 1
$wdAutomaticUpdate = 3
$wdCancelPublisher = 0
$wdChangeAttributes = 5
$wdManualUpdate = 4
$wdOpenSource = 7
$wdSelectPublisher = 2
$wdSendPublisher = 1
$wdUpdateSubscriber = 6
$wdPublisher = 0
$wdSubscriber = 1
$wdEditorCurrent = -6
$wdEditorEditors = -5
$wdEditorEveryone = -1
$wdEditorOwners = -4
$wdEmailHTMLFidelityHigh = 3
$wdEmailHTMLFidelityLow = 1
$wdEmailHTMLFidelityMedium = 2
$wdEmphasisMarkNone = 0
$wdEmphasisMarkOverComma = 2
$wdEmphasisMarkOverSolidCircle = 1
$wdEmphasisMarkOverWhiteCircle = 3
$wdEmphasisMarkUnderSolidCircle = 4
$wdCancelDisabled = 0
$wdCancelInterrupt = 1
$wdEncloseStyleLarge = 2
$wdEncloseStyleNone = 0
$wdEncloseStyleSmall = 1
$wdEnclosureCircle = 0
$wdEnclosureDiamond = 3
$wdEnclosureSquare = 1
$wdEnclosureTriangle = 2
$wdEndOfDocument = 1
$wdEndOfSection = 0
$wdCenterClockwise = 7
$wdCenterLandscape = 4
$wdCenterPortrait = 1
$wdLeftClockwise = 6
$wdLeftLandscape = 3
$wdLeftPortrait = 0
$wdRightClockwise = 8
$wdRightLandscape = 5
$wdRightPortrait = 2
$wdExportCreateHeadingBookmarks = 1
$wdExportCreateNoBookmarks = 0
$wdExportCreateWordBookmarks = 2
$wdExportFormatPDF = 17
$wdExportFormatXPS = 18
$wdExportDocumentContent = 0
$wdExportDocumentWithMarkup = 7
$wdExportOptimizeForOnScreen = 1
$wdExportOptimizeForPrint = 0
$wdExportAllDocument = 0
$wdExportCurrentPage = 2
$wdExportFromTo = 3
$wdExportSelection = 1
$wdLineBreakJapanese = 1041
$wdLineBreakKorean = 1042
$wdLineBreakSimplifiedChinese = 2052
$wdLineBreakTraditionalChinese = 1028
$wdFarEastLineBreakLevelCustom = 2
$wdFarEastLineBreakLevelNormal = 0
$wdFarEastLineBreakLevelStrict = 1
$wdFieldKindCold = 3
$wdFieldKindHot = 1
$wdFieldKindNone = 0
$wdFieldKindWarm = 2
$wdFieldShadingAlways = 1
$wdFieldShadingNever = 0
$wdFieldShadingWhenSelected = 2
$wdFieldAddin = 81
$wdFieldAddressBlock = 93
$wdFieldAdvance = 84
$wdFieldAsk = 38
$wdFieldAuthor = 17
$wdFieldAutoNum = 54
$wdFieldAutoNumLegal = 53
$wdFieldAutoNumOutline = 52
$wdFieldAutoText = 79
$wdFieldAutoTextList = 89
$wdFieldBarCode = 63
$wdFieldBidiOutline = 92
$wdFieldComments = 19
$wdFieldCompare = 80
$wdFieldCreateDate = 21
$wdFieldData = 40
$wdFieldDatabase = 78
$wdFieldDate = 31
$wdFieldDDE = 45
$wdFieldDDEAuto = 46
$wdFieldDisplayBarcode = 99
$wdFieldDocProperty = 85
$wdFieldDocVariable = 64
$wdFieldEditTime = 25
$wdFieldEmbed = 58
$wdFieldEmpty = -1
$wdFieldExpression = 34
$wdFieldFileName = 29
$wdFieldFileSize = 69
$wdFieldFillIn = 39
$wdFieldFootnoteRef = 5
$wdFieldFormCheckBox = 71
$wdFieldFormDropDown = 83
$wdFieldFormTextInput = 70
$wdMatchAnyCharacter = 65599
$wdMatchAnyDigit = 65567
$wdMatchAnyLetter = 65583
$wdMatchCaretCharacter = 11
$wdMatchColumnBreak = 14
$wdMatchCommentMark = 5
$wdMatchEmDash = 8212
$wdMatchEnDash = 8211
$wdMatchEndnoteMark = 65555
$wdMatchField = 19
$wdMatchFootnoteMark = 65554
$wdMatchGraphic = 1
$wdMatchManualLineBreak = 65551
$wdMatchManualPageBreak = 65564
$wdMatchNonbreakingHyphen = 30
$wdMatchNonbreakingSpace = 160
$wdMatchOptionalHyphen = 31
$wdMatchParagraphMark = 65551
$wdMatchSectionBreak = 65580
$wdMatchTabCharacter = 9
$wdMatchWhiteSpace = 65655
$wdFindAsk = 2
$wdFindContinue = 1
$wdFindStop = 0
$wdFlowLtr = 0
$wdFlowRtl = 1
$wdFontBiasDefault = 0
$wdFontBiasDontCare = 255
$wdFontBiasFareast = 1
$wdBeneathText = 1
$wdBottomOfPage = 0
$wdFrameBottom = -999997
$wdFrameCenter = -999995
$wdFrameInside = -999994
$wdFrameLeft = -999998
$wdFrameOutside = -999993
$wdFrameRight = -999996
$wdFrameTop = -999999
$wdFramesetNewFrameAbove = 0
$wdFramesetNewFrameBelow = 1
$wdFramesetNewFrameLeft = 3
$wdFramesetNewFrameRight = 2
$wdFramesetSizeTypeFixed = 1
$wdFramesetSizeTypePercent = 0
$wdFramesetSizeTypeRelative = 2
$wdFramesetTypeFrame = 1
$wdFramesetTypeFrameset = 0
$wdFrameAtLeast = 1
$wdFrameAuto = 0
$wdFrameExact = 2
$wdFrenchBoth = 0
$wdFrenchPostReform = 2
$wdFrenchPreReform = 1
$wdGoToAbsolute = 1
$wdGoToFirst = 1
$wdGoToLast = -1
$wdGoToNext = 2
$wdGoToPrevious = 3
$wdGoToRelative = 2
$wdGoToBookmark = -1
$wdGoToComment = 6
$wdGoToEndnote = 5
$wdGoToEquation = 10
$wdGoToField = 7
$wdGoToFootnote = 4
$wdGoToGrammaticalError = 14
$wdGoToGraphic = 8
$wdGoToHeading = 11
$wdGoToLine = 3
$wdGoToObject = 9
$wdGoToPage = 1
$wdGoToPercent = 12
$wdGoToProofreadingError = 15
$wdGoToSection = 0
$wdGoToSpellingError = 13
$wdGoToTable = 2
$wdGranularityCharLevel = 0
$wdGranularityWordLevel = 1
$wdGutterPosLeft = 0
$wdGutterPosRight = 2
$wdGutterPosTop = 1
$wdGutterStyleBidi = 2
$wdGutterStyleLatin = -10
$wdHeaderFooterEvenPages = 3
$wdHeaderFooterFirstPage = 2
$wdHeaderFooterPrimary = 1
$wdHeadingSeparatorBlankLine = 1
$wdHeadingSeparatorLetter = 2
$wdHeadingSeparatorLetterFull = 4
$wdHeadingSeparatorLetterLow = 3
$wdHeadingSeparatorNone = 0
$wdFullScript = 0
$wdMixedAuthorizedScript = 3
$wdMixedScript = 2
$wdPartialScript = 1
$wdHelp = 0
$wdHelpAbout = 1
$wdHelpActiveWindow = 2
$wdHelpContents = 3
$wdHelpExamplesAndDemos = 4
$wdHelpHWP = 13
$wdHelpIchitaro = 11
$wdHelpIndex = 5
$wdHelpKeyboard = 6
$wdHelpPE2 = 12
$wdHelpPSSHelp = 7
$wdHelpQuickPreview = 8
$wdHelpSearch = 9
$wdHelpUsingHelp = 10
$wdAutoDetectHighAnsiFarEast = 2
$wdHighAnsiIsFarEast = 0
$wdHighAnsiIsHighAnsi = 1
$wdHorizontalInVerticalFitInLine = 1
$wdHorizontalInVerticalNone = 0
$wdHorizontalInVerticalResizeLine = 2
$wdHorizontalLineAlignCenter = 1
$wdHorizontalLineAlignLeft = 0
$wdHorizontalLineAlignRight = 2
$wdHorizontalLineFixedWidth = -2
$wdHorizontalLinePercentWidth = -1
$wdIMEModeAlpha = 8
$wdIMEModeAlphaFull = 7
$wdIMEModeHangul = 10
$wdIMEModeHangulFull = 9
$wdIMEModeHiragana = 4
$wdIMEModeKatakana = 5
$wdIMEModeKatakanaHalf = 6
$wdIMEModeNoControl = 0
$wdIMEModeOff = 2
$wdIMEModeOn = 1
$wdIndexFilterAiueo = 1
$wdIndexFilterAkasatana = 2
$wdIndexFilterChosung = 3
$wdIndexFilterFull = 6
$wdIndexFilterLow = 4
$wdIndexFilterMedium = 5
$wdIndexFilterNone = 0
$wdIndexBulleted = 4
$wdIndexClassic = 1
$wdIndexFancy = 2
$wdIndexFormal = 5
$wdIndexModern = 3
$wdIndexSimple = 6
$wdIndexTemplate = 0
$wdIndexSortByStroke = 0
$wdIndexSortBySyllable = 1
$wdIndexIndent = 0
$wdIndexRunin = 1
$wdActiveEndAdjustedPageNumber = 1
$wdActiveEndPageNumber = 3
$wdActiveEndSectionNumber = 2
$wdAtEndOfRowMarker = 31
$wdCapsLock = 21
$wdEndOfRangeColumnNumber = 17
$wdEndOfRangeRowNumber = 14
$wdFirstCharacterColumnNumber = 9
$wdFirstCharacterLineNumber = 10
$wdFrameIsSelected = 11
$wdHeaderFooterType = 33
$wdHorizontalPositionRelativeToPage = 5
$wdHorizontalPositionRelativeToTextBoundary = 7
$wdInBibliography = 42
$wdInCitation = 43
$wdInClipboard = 38
$wdInCommentPane = 26
$wdInContentControl = 46
$wdInCoverPage = 41
$wdInEndnote = 36
$wdInFieldCode = 44
$wdInFieldResult = 45
$wdInFootnote = 35
$wdInFootnoteEndnotePane = 25
$wdInHeaderFooter = 28
$wdInMasterDocument = 34
$wdInWordMail = 37
$wdMaximumNumberOfColumns = 18
$wdMaximumNumberOfRows = 15
$wdNumberOfPagesInDocument = 4
$wdNumLock = 22
$wdOverType = 23
$wdReferenceOfType = 32
$wdRevisionMarking = 24
$wdInlineShape3DModel = 19
$wdInlineShapeChart = 12
$wdInlineShapeDiagram = 13
$wdInlineShapeEmbeddedOLEObject = 1
$wdInlineShapeHorizontalLine = 6
$wdInlineShapeLinked3DModel = 20
$wdInlineShapeLinkedOLEObject = 2
$wdInlineShapeLinkedPicture = 4
$wdInlineShapeLinkedPictureHorizontalLine = 8
$wdInlineShapeLockedCanvas = 14
$wdInlineShapeOLEControlObject = 5
$wdInlineShapeOWSAnchor = 11
$wdInlineShapePicture = 3
$wdInlineShapePictureBullet = 9
$wdInlineShapePictureHorizontalLine = 7
$wdInlineShapeScriptAnchor = 10
$wdInlineShapeSmartArt = 15
$wdInlineShapeWebVideo = 16
$wdInsertCellsEntireColumn = 3
$wdInsertCellsEntireRow = 2
$wdInsertCellsShiftDown = 1
$wdInsertCellsShiftRight = 0
$wdInsertedTextMarkBold = 1
$wdInsertedTextMarkColorOnly = 5
$wdInsertedTextMarkDoubleUnderline = 4
$wdInsertedTextMarkItalic = 2
$wdInsertedTextMarkNone = 0
$wdInsertedTextMarkStrikeThrough = 6
$wdInsertedTextMarkUnderline = 3
$wdInsertedTextMarkDoubleStrikeThrough = 7
$wd24HourClock = 21
$wdCurrencyCode = 20
$wdDateSeparator = 25
$wdDecimalSeparator = 18
$wdInternationalAM = 22
$wdInternationalPM = 23
$wdListSeparator = 17
$wdProductLanguageID = 26
$wdThousandsSeparator = 19
$wdTimeSeparator = 24
$wdJustificationModeCompress = 1
$wdJustificationModeCompressKana = 2
$wdJustificationModeExpand = 0
$wdKanaHiragana = 9
$wdKanaKatakana = 8
$wdKey0 = 48
$wdKey1 = 49
$wdKey2 = 50
$wdKey3 = 51
$wdKey4 = 52
$wdKey5 = 53
$wdKey6 = 54
$wdKey7 = 55
$wdKey8 = 56
$wdKey9 = 57
$wdKeyA = 65
$wdKeyAlt = 1024
$wdKeyB = 66
$wdKeyBackSingleQuote = 192
$wdKeyBackSlash = 220
$wdKeyBackspace = 8
$wdKeyC = 67
$wdKeyCloseSquareBrace = 221
$wdKeyComma = 188
$wdKeyCommand = 512
$wdKeyControl = 512
$wdKeyD = 68
$wdKeyDelete = 46
$wdKeyE = 69
$wdKeyEnd = 35
$wdKeyEquals = 187
$wdKeyEsc = 27
$wdKeyF = 70
$wdKeyF1 = 112
$wdKeyF10 = 121
$wdKeyF11 = 122
$wdKeyF12 = 123
$wdKeyF13 = 124
$wdKeyF14 = 125
$wdKeyCategoryAutoText = 4
$wdKeyCategoryCommand = 1
$wdKeyCategoryDisable = 0
$wdKeyCategoryFont = 3
$wdKeyCategoryMacro = 2
$wdKeyCategoryNil = -1
$wdKeyCategoryPrefix = 7
$wdKeyCategoryStyle = 5
$wdKeyCategorySymbol = 6
$wdAfrikaans = 1078
$wdAlbanian = 1052
$wdAmharic = 1118
$wdArabic = 1025
$wdArabicAlgeria = 5121
$wdArabicBahrain = 15361
$wdArabicEgypt = 3073
$wdArabicIraq = 2049
$wdArabicJordan = 11265
$wdArabicKuwait = 13313
$wdArabicLebanon = 12289
$wdArabicLibya = 4097
$wdArabicMorocco = 6145
$wdArabicOman = 8193
$wdArabicQatar = 16385
$wdArabicSyria = 10241
$wdArabicTunisia = 7169
$wdArabicUAE = 14337
$wdArabicYemen = 9217
$wdArmenian = 1067
$wdAssamese = 1101
$wdAzeriCyrillic = 2092
$wdAzeriLatin = 1068
$wdBasque = 1069
$wdBelgianDutch = 2067
$wdBelgianFrench = 2060
$wdBengali = 1093
$wdBulgarian = 1026
$wdBurmese = 1109
$wdByelorussian = 1059
$wdCatalan = 1027
$wdCherokee = 1116
$wdChineseHongKongSAR = 3076
$wdChineseMacaoSAR = 5124
$wdLayoutModeDefault = 0
$wdLayoutModeGenko = 3
$wdLayoutModeGrid = 1
$wdLayoutModeLineGrid = 2
$wdLetterBottom = 1
$wdLetterLeft = 2
$wdLetterRight = 3
$wdLetterTop = 0
$wdFullBlock = 0
$wdModifiedBlock = 1
$wdSemiBlock = 2
$wdLigaturesAll = 15
$wdLigaturesContextual = 2
$wdLigaturesContextualDiscretional = 10
$wdLigaturesContextualHistorical = 6
$wdLigaturesContextualHistoricalDiscretional = 14
$wdLigaturesDiscretional = 8
$wdLigaturesHistorical = 4
$wdLigaturesHistoricalDiscretional = 12
$wdLigaturesNone = 0
$wdLigaturesStandard = 1
$wdLigaturesStandardContextual = 3
$wdLigaturesStandardContextualDiscretional = 11
$wdLigaturesStandardContextualHistorical = 7
$wdLigaturesStandardDiscretional = 9
$wdLigaturesStandardHistorical = 5
$wdLigaturesStandardHistoricalDiscretional = 13
$wdCRLF = 0
$wdCROnly = 1
$wdLFCR = 3
$wdLFOnly = 2
$wdLSPS = 4
$wdLineSpace1pt5 = 1
$wdLineSpaceAtLeast = 3
$wdLineSpaceDouble = 2
$wdLineSpaceExactly = 4
$wdLineSpaceMultiple = 5
$wdLineSpaceSingle = 0
$wdLineStyleDashDot = 5
$wdLineStyleDashDotDot = 6
$wdLineStyleDashDotStroked = 20
$wdLineStyleDashLargeGap = 4
$wdLineStyleDashSmallGap = 3
$wdLineStyleDot = 2
$wdLineStyleDouble = 7
$wdLineStyleDoubleWavy = 19
$wdLineStyleEmboss3D = 21
$wdLineStyleEngrave3D = 22
$wdLineStyleInset = 24
$wdLineStyleNone = 0
$wdLineStyleOutset = 23
$wdLineStyleSingle = 1
$wdLineStyleSingleWavy = 18
$wdLineStyleThickThinLargeGap = 16
$wdLineStyleThickThinMedGap = 13
$wdLineStyleThickThinSmallGap = 10
$wdLineStyleThinThickLargeGap = 15
$wdLineStyleThinThickMedGap = 12
$wdLineStyleThinThickSmallGap = 9
$wdLineStyleThinThickThinLargeGap = 17
$wdLineStyleThinThickThinMedGap = 14
$wdLineStyleThinThickThinSmallGap = 11
$wdLineStyleTriple = 8
$wdTableRow = 1
$wdTextLine = 0
$wdLineWidth025pt = 2
$wdLineWidth050pt = 4
$wdLineWidth075pt = 6
$wdLineWidth100pt = 8
$wdLineWidth150pt = 12
$wdLineWidth225pt = 18
$wdLineWidth300pt = 24
$wdLineWidth450pt = 36
$wdLineWidth600pt = 48
$wdLinkTypeChart = 8
$wdLinkTypeDDE = 6
$wdLinkTypeDDEAuto = 7
$wdLinkTypeImport = 5
$wdLinkTypeInclude = 4
$wdLinkTypeOLE = 0
$wdLinkTypePicture = 1
$wdLinkTypeReference = 3
$wdLinkTypeText = 2
$wdListApplyToSelection = 2
$wdListApplyToThisPointForward = 1
$wdListApplyToWholeList = 0
$wdBulletGallery = 1
$wdNumberGallery = 2
$wdOutlineNumberGallery = 3
$wdListLevelAlignCenter = 1
$wdListLevelAlignLeft = 0
$wdListLevelAlignRight = 2
$wdListNumberStyleAiueo = 20
$wdListNumberStyleAiueoHalfWidth = 12
$wdListNumberStyleArabic = 0
$wdListNumberStyleArabic1 = 46
$wdListNumberStyleArabic2 = 48
$wdListNumberStyleArabicFullWidth = 14
$wdListNumberStyleArabicLZ = 22
$wdListNumberStyleArabicLZ2 = 62
$wdListNumberStyleArabicLZ3 = 63
$wdListNumberStyleArabicLZ4 = 64
$wdListNumberStyleBullet = 23
$wdListNumberStyleCardinalText = 6
$wdListNumberStyleChosung = 25
$wdListNumberStyleGanada = 24
$wdListNumberStyleGBNum1 = 26
$wdListNumberStyleGBNum2 = 27
$wdListNumberStyleGBNum3 = 28
$wdListNumberStyleGBNum4 = 29
$wdListNumberStyleHangul = 43
$wdListNumberStyleHanja = 44
$wdListNumberStyleHanjaRead = 41
$wdListNumberStyleHanjaReadDigit = 42
$wdListNumberStyleHebrew1 = 45
$wdListNumberStyleHebrew2 = 47
$wdListNumberStyleHindiArabic = 51
$wdListNumberStyleHindiCardinalText = 52
$wdListNumberStyleHindiLetter1 = 49
$wdListNumberStyleHindiLetter2 = 50
$wdListNumberStyleIroha = 21
$wdListNumberStyleIrohaHalfWidth = 13
$wdListNumberStyleKanji = 10
$wdListNumberStyleKanjiDigit = 11
$wdListNumberStyleKanjiTraditional = 16
$wdListNumberStyleKanjiTraditional2 = 17
$wdListBullet = 2
$wdListListNumOnly = 1
$wdListMixedNumbering = 5
$wdListNoNumbering = 0
$wdListOutlineNumbering = 4
$wdListPictureBullet = 6
$wdListSimpleNumbering = 3
$wdLockChanged = 3
$wdLockEphemeral = 2
$wdLockNone = 0
$wdLockReservation = 1
$wdPriorityHigh = 3
$wdPriorityLow = 2
$wdPriorityNormal = 1
$wdFirstDataSourceRecord = -6
$wdFirstRecord = -4
$wdLastDataSourceRecord = -7
$wdLastRecord = -5
$wdNextDataSourceRecord = -8
$wdNextRecord = -2
$wdNoActiveRecord = -1
$wdPreviousDataSourceRecord = -9
$wdPreviousRecord = -3
$wdMergeIfEqual = 0
$wdMergeIfGreaterThan = 3
$wdMergeIfGreaterThanOrEqual = 5
$wdMergeIfIsBlank = 6
$wdMergeIfIsNotBlank = 7
$wdMergeIfLessThan = 2
$wdMergeIfLessThanOrEqual = 4
$wdMergeIfNotEqual = 1
$wdMergeInfoFromAccessDDE = 1
$wdMergeInfoFromExcelDDE = 2
$wdMergeInfoFromMSQueryDDE = 3
$wdMergeInfoFromODBC = 4
$wdMergeInfoFromODSO = 5
$wdMergeInfoFromWord = 0
$wdNoMergeInfo = -1
$wdDefaultFirstRecord = 1
$wdDefaultLastRecord = -16
$wdSendToEmail = 2
$wdSendToFax = 3
$wdSendToNewDocument = 0
$wdSendToPrinter = 1
$wdMailFormatHTML = 1
$wdMailFormatPlainText = 0
$wdCatalog = 3
$wdDirectory = 3
$wdEMail = 4
$wdEnvelopes = 2
$wdFax = 5
$wdFormLetters = 0
$wdMailingLabels = 1
$wdNotAMergeDocument = -1
$wdDataSource = 5
$wdMainAndDataSource = 2
$wdMainAndHeader = 3
$wdMainAndSourceAndHeader = 4
$wdMainDocumentOnly = 1
$wdNormalDocument = 0
$wdMAPI = 1
$wdMAPIandPowerTalk = 3
$wdNoMailSystem = 0
$wdPowerTalk = 2
$wdAddress1 = 10
$wdAddress2 = 11
$wdAddress3 = 29
$wdBusinessFax = 17
$wdBusinessPhone = 16
$wdCity = 12
$wdCompany = 9
$wdCountryRegion = 15
$wdCourtesyTitle = 2
$wdDepartment = 30
$wdEmailAddress = 20
$wdFirstName = 3
$wdHomeFax = 19
$wdHomePhone = 18
$wdJobTitle = 8
$wdLastName = 5
$wdMiddleName = 4
$wdNickname = 7
$wdPostalCode = 14
$wdRubyFirstName = 27
$wdRubyLastName = 28
$wdSpouseCourtesyTitle = 22
$wdSpouseFirstName = 23
$wdSpouseLastName = 25
$wdSpouseMiddleName = 24
$wdSpouseNickname = 26
$wdState = 13
$wdSuffix = 6
$wdUniqueIdentifier = 1
$wdWebPageURL = 21
$wdCentimeters = 1
$wdInches = 0
$wdMillimeters = 2
$wdPicas = 4
$wdPoints = 3
$wdMergeFormatFromOriginal = 0
$wdMergeFormatFromPrompt = 2
$wdMergeFormatFromRevised = 1
$wdMergeSubTypeAccess = 1
$wdMergeSubTypeOAL = 2
$wdMergeSubTypeOLEDBText = 5
$wdMergeSubTypeOLEDBWord = 3
$wdMergeSubTypeOther = 0
$wdMergeSubTypeOutlook = 6
$wdMergeSubTypeWord = 7
$wdMergeSubTypeWord2000 = 8
$wdMergeSubTypeWorks = 4
$wdMergeTargetCurrent = 1
$wdMergeTargetNew = 2
$wdMergeTargetSelected = 0
$wdMonthNamesArabic = 0
$wdMonthNamesEnglish = 1
$wdMonthNamesFrench = 2
$wdMoveFromTextMarkBold = 6
$wdMoveFromTextMarkCaret = 3
$wdMoveFromTextMarkColorOnly = 10
$wdMoveFromTextMarkDoubleStrikeThrough = 1
$wdMoveFromTextMarkDoubleUnderline = 9
$wdMoveFromTextMarkHidden = 0
$wdMoveFromTextMarkItalic = 7
$wdMoveFromTextMarkNone = 5
$wdMoveFromTextMarkPound = 4
$wdMoveFromTextMarkStrikeThrough = 2
$wdMoveFromTextMarkUnderline = 8
$wdExtend = 1
$wdMove = 0
$wdMoveToTextMarkBold = 1
$wdMoveToTextMarkColorOnly = 5
$wdMoveToTextMarkDoubleStrikeThrough = 7
$wdMoveToTextMarkDoubleUnderline = 4
$wdMoveToTextMarkItalic = 2
$wdMoveToTextMarkNone = 0
$wdMoveToTextMarkStrikeThrough = 6
$wdMoveToTextMarkUnderline = 3
$wdHangulToHanja = 0
$wdHanjaToHangul = 1
$wdNewBlankDocument = 0
$wdNewEmailMessage = 2
$wdNewFrameset = 3
$wdNewWebPage = 1
$wdNewXMLDocument = 4
$wdNoteNumberStyleArabic = 0
$wdNoteNumberStyleArabicFullWidth = 14
$wdNoteNumberStyleArabicLetter1 = 46
$wdNoteNumberStyleArabicLetter2 = 48
$wdNoteNumberStyleHanjaRead = 41
$wdNoteNumberStyleHanjaReadDigit = 42
$wdNoteNumberStyleHebrewLetter1 = 45
$wdNoteNumberStyleHebrewLetter2 = 47
$wdNoteNumberStyleHindiArabic = 51
$wdNoteNumberStyleHindiCardinalText = 52
$wdNoteNumberStyleHindiLetter1 = 49
$wdNoteNumberStyleHindiLetter2 = 50
$wdNoteNumberStyleKanji = 10
$wdNoteNumberStyleKanjiDigit = 11
$wdNoteNumberStyleKanjiTraditional = 16
$wdNoteNumberStyleLowercaseLetter = 4
$wdNoteNumberStyleLowercaseRoman = 2
$wdNoteNumberStyleNumberInCircle = 18
$wdNoteNumberStyleSimpChinNum1 = 37
$wdNoteNumberStyleSimpChinNum2 = 38
$wdNoteNumberStyleSymbol = 9
$wdNoteNumberStyleThaiArabic = 54
$wdNoteNumberStyleThaiCardinalText = 55
$wdNoteNumberStyleThaiLetter = 53
$wdNoteNumberStyleTradChinNum1 = 33
$wdNoteNumberStyleTradChinNum2 = 34
$wdNoteNumberStyleUppercaseLetter = 3
$wdNoteNumberStyleUppercaseRoman = 1
$wdNoteNumberStyleVietCardinalText = 56
$wdNumberFormDefault = 0
$wdNumberFormLining = 1
$wdNumberFormOldstyle = 2
$wdRestartContinuous = 0
$wdRestartPage = 2
$wdRestartSection = 1
$wdNumberSpacingDefault = 0
$wdNumberSpacingProportional = 1
$wdNumberSpacingTabular = 2
$wdCaptionNumberStyleBidiLetter1 = 49
$wdCaptionNumberStyleBidiLetter2 = 50
$wdListNumberStyleBidi1 = 49
$wdListNumberStyleBidi2 = 50
$wdNoteNumberStyleBidiLetter1 = 49
$wdNoteNumberStyleBidiLetter2 = 50
$wdPageNumberStyleBidiLetter1 = 49
$wdPageNumberStyleBidiLetter2 = 50
$wdNumberAllNumbers = 3
$wdNumberListNum = 2
$wdNumberParagraph = 1
$wdFloatOverText = 1
$wdInLine = 0
$wdOLEControl = 2
$wdOLEEmbed = 1
$wdOLELink = 0
$wdOLEVerbDiscardUndoState = -6
$wdOLEVerbHide = -3
$wdOLEVerbInPlaceActivate = -5
$wdOLEVerbOpen = -2
$wdOLEVerbPrimary = 0
$wdOLEVerbShow = -1
$wdOLEVerbUIActivate = -4
$wdOMathBreakBinAfter = 1
$wdOMathBreakBinBefore = 0
$wdOMathBreakBinRepeat = 2
$wdOMathBreakSubMinusMinus = 0
$wdOMathBreakSubMinusPlus = 2
$wdOMathBreakSubPlusMinus = 1
$wdOMathFracBar = 0
$wdOMathFracLin = 3
$wdOMathFracNoBar = 1
$wdOMathFracSkw = 2
$wdOMathFunctionAcc = 1
$wdOMathFunctionBar = 2
$wdOMathFunctionBorderBox = 4
$wdOMathFunctionBox = 3
$wdOMathFunctionDelim = 5
$wdOMathFunctionEqArray = 6
$wdOMathFunctionFrac = 7
$wdOMathFunctionFunc = 8
$wdOMathFunctionGroupChar = 9
$wdOMathFunctionLimLow = 10
$wdOMathFunctionLimUpp = 11
$wdOMathFunctionMat = 12
$wdOMathFunctionNary = 13
$wdOMathFunctionNormalText = 21
$wdOMathFunctionPhantom = 14
$wdOMathFunctionRad = 16
$wdOMathFunctionScrPre = 15
$wdOMathFunctionScrSub = 17
$wdOMathFunctionScrSubSup = 18
$wdOMathFunctionScrSup = 19
$wdOMathFunctionText = 20
$wdOMathHorizAlignCenter = 0
$wdOMathHorizAlignLeft = 1
$wdOMathHorizAlignRight = 2
$wdOMathJcCenter = 2
$wdOMathJcCenterGroup = 1
$wdOMathJcInline = 7
$wdOMathJcLeft = 3
$wdOMathJcRight = 4
$wdOMathShapeCentered = 0
$wdOMathShapeMatch = 1
$wdOMathSpacing1pt5 = 1
$wdOMathSpacingDouble = 2
$wdOMathSpacingExactly = 3
$wdOMathSpacingMultiple = 4
$wdOMathSpacingSingle = 0
$wdOMathDisplay = 0
$wdOMathInline = 1
$wdOMathVertAlignBottom = 2
$wdOMathVertAlignCenter = 0
$wdOMathVertAlignTop = 1
$wdOpenFormatAllWord = 6
$wdOpenFormatAuto = 0
$wdOpenFormatDocument = 1
$wdOpenFormatEncodedText = 5
$wdOpenFormatRTF = 3
$wdOpenFormatTemplate = 2
$wdOpenFormatText = 4
$wdOpenFormatOpenDocumentText = 0x12
$wdOpenFormatUnicodeText = 5
$wdOpenFormatWebPages = 7
$wdOpenFormatXML = 8
$wdOpenFormatAllWordTemplates = 13
$wdOpenFormatDocument97 = 1
$wdOpenFormatTemplate97 = 2
$wdOpenFormatXMLDocument = 9
$wdOpenFormatXMLDocumentSerialized = 14
$wdOpenFormatXMLDocumentMacroEnabled = 10
$wdOpenFormatXMLDocumentMacroEnabledSerialized = 15
$wdOpenFormatXMLTemplate = 11
$wdOpenFormatXMLTemplateSerialized = 0x10
$wdOpenFormatXMLTemplateMacroEnabled = 12
$wdOpenFormatXMLTemplateMacroEnabledSerialized = 0x11
$wdOrganizerObjectAutoText = 1
$wdOrganizerObjectCommandBars = 2
$wdOrganizerObjectProjectItems = 3
$wdOrganizerObjectStyles = 0
$wdOrientLandscape = 1
$wdOrientPortrait = 0
$wdOriginalDocumentFormat = 1
$wdPromptUser = 2
$wdWordDocument = 0
$wdOutlineLevel1 = 1
$wdOutlineLevel2 = 2
$wdOutlineLevel3 = 3
$wdOutlineLevel4 = 4
$wdOutlineLevel5 = 5
$wdOutlineLevel6 = 6
$wdOutlineLevel7 = 7
$wdOutlineLevel8 = 8
$wdOutlineLevel9 = 9
$wdOutlineLevelBodyText = 10
$wdArtApples = 1
$wdArtArchedScallops = 97
$wdArtBabyPacifier = 70
$wdArtBabyRattle = 71
$wdArtBalloons3Colors = 11
$wdArtBalloonsHotAir = 12
$wdArtBasicBlackDashes = 155
$wdArtBasicBlackDots = 156
$wdArtBasicBlackSquares = 154
$wdArtBasicThinLines = 151
$wdArtBasicWhiteDashes = 152
$wdArtBasicWhiteDots = 147
$wdArtBasicWhiteSquares = 153
$wdArtBasicWideInline = 150
$wdArtBasicWideMidline = 148
$wdArtBasicWideOutline = 149
$wdArtBats = 37
$wdArtBirds = 102
$wdArtBirdsFlight = 35
$wdArtCabins = 72
$wdArtCakeSlice = 3
$wdArtCandyCorn = 4
$wdArtCelticKnotwork = 99
$wdArtCertificateBanner = 158
$wdArtChainLink = 128
$wdArtChampagneBottle = 6
$wdArtCheckedBarBlack = 145
$wdArtCheckedBarColor = 61
$wdArtCheckered = 144
$wdArtChristmasTree = 8
$wdArtCirclesLines = 91
$wdArtCirclesRectangles = 140
$wdArtClassicalWave = 56
$wdArtClocks = 27
$wdPageColorInverse = 2
$wdPageColorNone = 0
$wdPageColorSepia = 1
$wdPageFitBestFit = 2
$wdPageFitFullPage = 1
$wdPageFitNone = 0
$wdPageFitTextFit = 3
$wdVertical = 1
$wdSideToSide = 2
$wdAlignPageNumberCenter = 1
$wdAlignPageNumberInside = 3
$wdAlignPageNumberLeft = 0
$wdAlignPageNumberOutside = 4
$wdAlignPageNumberRight = 2
$wdPageNumberStyleArabic = 0
$wdPageNumberStyleArabicFullWidth = 14
$wdPageNumberStyleArabicLetter1 = 46
$wdPageNumberStyleArabicLetter2 = 48
$wdPageNumberStyleHanjaRead = 41
$wdPageNumberStyleHanjaReadDigit = 42
$wdPageNumberStyleHebrewLetter1 = 45
$wdPageNumberStyleHebrewLetter2 = 47
$wdPageNumberStyleHindiArabic = 51
$wdPageNumberStyleHindiCardinalText = 52
$wdPageNumberStyleHindiLetter1 = 49
$wdPageNumberStyleHindiLetter2 = 50
$wdPageNumberStyleKanji = 10
$wdPageNumberStyleKanjiDigit = 11
$wdPageNumberStyleKanjiTraditional = 16
$wdPageNumberStyleLowercaseLetter = 4
$wdPageNumberStyleLowercaseRoman = 2
$wdPageNumberStyleNumberInCircle = 18
$wdPageNumberStyleNumberInDash = 57
$wdPageNumberStyleSimpChinNum1 = 37
$wdPageNumberStyleSimpChinNum2 = 38
$wdPageNumberStyleThaiArabic = 54
$wdPageNumberStyleThaiCardinalText = 55
$wdPageNumberStyleThaiLetter = 53
$wdPageNumberStyleTradChinNum1 = 33
$wdPageNumberStyleTradChinNum2 = 34
$wdPageNumberStyleUppercaseLetter = 3
$wdPageNumberStyleUppercaseRoman = 1
$wdPageNumberStyleVietCardinalText = 56
$wdPaper10x14 = 0
$wdPaper11x17 = 1
$wdPaperA3 = 6
$wdPaperA4 = 7
$wdPaperA4Small = 8
$wdPaperA5 = 9
$wdPaperB4 = 10
$wdPaperB5 = 11
$wdPaperCSheet = 12
$wdPaperCustom = 41
$wdPaperDSheet = 13
$wdPaperEnvelope10 = 25
$wdPaperEnvelope11 = 26
$wdPaperEnvelope12 = 27
$wdPaperEnvelope14 = 28
$wdPaperEnvelope9 = 24
$wdPaperEnvelopeB4 = 29
$wdPaperEnvelopeB5 = 30
$wdPaperEnvelopeB6 = 31
$wdPaperEnvelopeC3 = 32
$wdPaperEnvelopeC4 = 33
$wdPaperEnvelopeC5 = 34
$wdPaperEnvelopeC6 = 35
$wdPaperEnvelopeC65 = 36
$wdPaperEnvelopeDL = 37
$wdPaperEnvelopeItaly = 38
$wdPaperEnvelopeMonarch = 39
$wdPaperEnvelopePersonal = 40
$wdPaperESheet = 14
$wdPaperExecutive = 5
$wdPaperFanfoldLegalGerman = 15
$wdPaperFanfoldStdGerman = 16
$wdPaperFanfoldUS = 17
$wdPaperFolio = 18
$wdPrinterAutomaticSheetFeed = 7
$wdPrinterDefaultBin = 0
$wdPrinterEnvelopeFeed = 5
$wdPrinterFormSource = 15
$wdPrinterLargeCapacityBin = 11
$wdPrinterLargeFormatBin = 10
$wdPrinterLowerBin = 2
$wdPrinterManualEnvelopeFeed = 6
$wdPrinterManualFeed = 4
$wdPrinterMiddleBin = 3
$wdPrinterOnlyBin = 1
$wdPrinterPaperCassette = 14
$wdPrinterSmallFormatBin = 9
$wdPrinterTractorFeed = 8
$wdPrinterUpperBin = 1
$wdAlignParagraphCenter = 1
$wdAlignParagraphDistribute = 4
$wdAlignParagraphJustify = 3
$wdAlignParagraphJustifyHi = 7
$wdAlignParagraphJustifyLow = 8
$wdAlignParagraphJustifyMed = 5
$wdAlignParagraphLeft = 0
$wdAlignParagraphRight = 2
$wdAlignParagraphThaiJustify = 9
$wdAdjective = 0
$wdAdverb = 2
$wdConjunction = 5
$wdIdiom = 8
$wdInterjection = 7
$wdNoun = 1
$wdOther = 9
$wdPreposition = 6
$wdPronoun = 4
$wdVerb = 3
$wdPasteBitmap = 4
$wdPasteDeviceIndependentBitmap = 5
$wdPasteEnhancedMetafile = 9
$wdPasteHTML = 10
$wdPasteHyperlink = 7
$wdPasteMetafilePicture = 3
$wdPasteOLEObject = 0
$wdPasteRTF = 1
$wdPasteShape = 8
$wdPasteText = 2
$wdKeepSourceFormatting = 0
$wdKeepTextOnly = 2
$wdMatchDestinationFormatting = 1
$wdUseDestinationStyles = 3
$wdPhoneticGuideAlignmentCenter = 0
$wdPhoneticGuideAlignmentLeft = 3
$wdPhoneticGuideAlignmentOneTwoOne = 2
$wdPhoneticGuideAlignmentRight = 4
$wdPhoneticGuideAlignmentRightVertical = 5
$wdPhoneticGuideAlignmentZeroOneZero = 1
$wdLinkDataInDoc = 1
$wdLinkDataOnDisk = 2
$wdLinkNone = 0
$wdPortugueseBoth = 3
$wdPortuguesePostReform = 2
$wdPortuguesePreReform = 1
$wdPreferredWidthAuto = 1
$wdPreferredWidthPercent = 2
$wdPreferredWidthPoints = 3
$wdPrintAutoTextEntries = 4
$wdPrintComments = 2
$wdPrintDocumentContent = 0
$wdPrintDocumentWithMarkup = 7
$wdPrintEnvelope = 6
$wdPrintKeyAssignments = 5
$wdPrintMarkup = 2
$wdPrintProperties = 1
$wdPrintStyles = 3
$wdPrintAllPages = 0
$wdPrintEvenPagesOnly = 2
$wdPrintOddPagesOnly = 1
$wdPrintAllDocument = 0
$wdPrintCurrentPage = 2
$wdPrintFromTo = 3
$wdPrintRangeOfPages = 4
$wdPrintSelection = 1
$wdGrammaticalError = 1
$wdSpellingError = 0
$wdProtectedViewCloseEdit = 1
$wdProtectedViewCloseForced = 2
$wdProtectedViewCloseNormal = 0
$wdAllowOnlyComments = 1
$wdAllowOnlyFormFields = 2
$wdAllowOnlyReading = 3
$wdAllowOnlyRevisions = 0
$wdNoProtection = -1
$wdAutomaticMargin = 0
$wdFullMargin = 2
$wdSuppressMargin = 1
$wdReadingOrderLtr = 1
$wdReadingOrderRtl = 0
$wdChart = 14
$wdChartLinked = 15
$wdChartPicture = 13
$wdFormatOriginalFormatting = 16
$wdFormatPlainText = 22
$wdFormatSurroundingFormattingWithEmphasis = 20
$wdListCombineWithExistingList = 24
$wdListContinueNumbering = 7
$wdListDontMerge = 25
$wdListRestartNumbering = 8
$wdPasteDefault = 0
$wdSingleCellTable = 6
$wdSingleCellText = 5
$wdTableAppendTable = 10
$wdTableInsertAsRows = 11
$wdTableOriginalFormatting = 12
$wdTableOverwriteCells = 23
$wdUseDestinationStylesRecovery = 19
$wdLineBetweenColumnRectangle = 5
$wdMarkupRectangle = 2
$wdMarkupRectangleButton = 3
$wdPageBorderRectangle = 4
$wdSelection = 6
$wdShapeRectangle = 1
$wdSystem = 7
$wdTextRectangle = 0
$wdDocumentControlRectangle = 13
$wdMailNavArea = 12
$wdMarkupRectangleArea = 8
$wdMarkupRectangleMoveMatch = 10
$wdReadingModeNavigation = 9
$wdReadingModePanningArea = 11
$wdContentText = -1
$wdEndnoteNumber = 6
$wdEndnoteNumberFormatted = 17
$wdEntireCaption = 2
$wdFootnoteNumber = 5
$wdFootnoteNumberFormatted = 16
$wdNumberFullContext = -4
$wdNumberNoContext = -3
$wdNumberRelativeContext = -2
$wdOnlyCaptionText = 4
$wdOnlyLabelAndNumber = 3
$wdPageNumber = 7
$wdPosition = 15
$wdRefTypeBookmark = 2
$wdRefTypeEndnote = 4
$wdRefTypeFootnote = 3
$wdRefTypeHeading = 1
$wdRefTypeNumberedItem = 0
$wdRelativeHorizontalPositionCharacter = 3
$wdRelativeHorizontalPositionColumn = 2
$wdRelativeHorizontalPositionMargin = 0
$wdRelativeHorizontalPositionPage = 1
$wdRelativeHorizontalPositionInnerMarginArea = 6
$wdRelativeHorizontalPositionLeftMarginArea = 4
$wdRelativeHorizontalPositionOuterMarginArea = 7
$wdRelativeHorizontalPositionRightMarginArea = 5
$wdRelativeHorizontalSizeInnerMarginArea = 4
$wdRelativeHorizontalSizeLeftMarginArea = 2
$wdRelativeHorizontalSizeMargin = 0
$wdRelativeHorizontalSizeOuterMarginArea = 5
$wdRelativeHorizontalSizePage = 1
$wdRelativeHorizontalSizeRightMarginArea = 3
$wdRelativeVerticalPositionLine = 3
$wdRelativeVerticalPositionMargin = 0
$wdRelativeVerticalPositionPage = 1
$wdRelativeVerticalPositionParagraph = 2
$wdRelativeVerticalPositionBottomMarginArea = 5
$wdRelativeVerticalPositionInnerMarginArea = 6
$wdRelativeVerticalPositionOuterMarginArea = 7
$wdRelativeVerticalPositionTopMarginArea = 4
$wdRelativeVerticalSizeBottomMarginArea = 3
$wdRelativeVerticalSizeInnerMarginArea = 4
$wdRelativeVerticalSizeMargin = 0
$wdRelativeVerticalSizeOuterMarginArea = 5
$wdRelativeVerticalSizePage = 1
$wdRelativeVerticalSizeTopMarginArea = 2
$wdRelocateDown = 1
$wdRelocateUp = 0
$wdRDIAll = 99
$wdRDIComments = 1
$wdRDIContentType = 16
$wdRDIDocumentManagementPolicy = 15
$wdRDIDocumentProperties = 8
$wdRDIDocumentServerProperties = 14
$wdRDIDocumentWorkspace = 10
$wdRDIEmailHeader = 5
$wdRDIInkAnnotTations = 11
$wdRDIRemovePersonalInformation = 4
$wdRDIRevisions = 2
$wdRDIRoutingSlip = 6
$wdRDISendForReview = 7
$wdRDITemplate = 9
$wdRDITaskpaneWebExtensions = 17
$wdRDIVersions = 3
$wdReplaceAll = 2
$wdReplaceNone = 0
$wdReplaceOne = 1
$wdRevisedLinesMarkLeftBorder = 1
$wdRevisedLinesMarkNone = 0
$wdRevisedLinesMarkOutsideBorder = 3
$wdRevisedLinesMarkRightBorder = 2
$wdRevisedPropertiesMarkBold = 1
$wdRevisedPropertiesMarkColorOnly = 5
$wdRevisedPropertiesMarkDoubleStrikeThrough = 7
$wdRevisedPropertiesMarkDoubleUnderline = 4
$wdRevisedPropertiesMarkItalic = 2
$wdRevisedPropertiesMarkNone = 0
$wdRevisedPropertiesMarkStrikeThrough = 6
$wdRevisedPropertiesMarkUnderline = 3
$wdLeftMargin = 0
$wdRightMargin = 1
$wdBalloonPrintOrientationAuto = 0
$wdBalloonPrintOrientationForceLandscape = 2
$wdBalloonPrintOrientationPreserve = 1
$wdBalloonWidthPercent = 0
$wdBalloonWidthPoints = 1
$wdRevisionsMarkupAll = 2
$wdRevisionsMarkupNone = 0
$wdRevisionsMarkupSimple = 1
$wdBalloonRevisions = 0
$wdInLineRevisions = 1
$wdMixedRevisions = 2
$wdRevisionsViewFinal = 0
$wdRevisionsViewOriginal = 1
$wdWrapAlways = 1
$wdWrapAsk = 2
$wdWrapNever = 0
$wdNoRevision = 0
$wdRevisionCellDeletion = 17
$wdRevisionCellInsertion = 16
$wdRevisionCellMerge = 18
$wdRevisionCellSplit = 19
$wdRevisionConflict = 7
$wdRevisionConflictDelete = 21
$wdRevisionConflictInsert = 20
$wdRevisionDelete = 2
$wdRevisionDisplayField = 5
$wdRevisionInsert = 1
$wdRevisionMovedFrom = 14
$wdRevisionMovedTo = 15
$wdRevisionParagraphNumber = 4
$wdRevisionParagraphProperty = 10
$wdRevisionProperty = 3
$wdRevisionReconcile = 6
$wdRevisionReplace = 9
$wdRevisionSectionProperty = 12
$wdRevisionStyle = 8
$wdRevisionStyleDefinition = 13
$wdRevisionTableProperty = 11
$wdAlignRowCenter = 1
$wdAlignRowLeft = 0
$wdAlignRowRight = 2
$wdRowHeightAtLeast = 1
$wdRowHeightAuto = 0
$wdRowHeightExactly = 2
$wdAdjustFirstColumn = 2
$wdAdjustNone = 0
$wdAdjustProportional = 1
$wdAdjustSameWidth = 3
$wdGenderFemale = 0
$wdGenderMale = 1
$wdGenderNeutral = 2
$wdGenderUnknown = 3
$wdSalutationBusiness = 2
$wdSalutationFormal = 1
$wdSalutationInformal = 0
$wdSalutationOther = 3
$wdFormatDocument = 0
$wdFormatDOSText = 4
$wdFormatDOSTextLineBreaks = 5
$wdFormatEncodedText = 7
$wdFormatFilteredHTML = 10
$wdFormatFlatXML = 19
$wdFormatFlatXMLMacroEnabled = 20
$wdFormatFlatXMLTemplate = 21
$wdFormatFlatXMLTemplateMacroEnabled = 22
$wdFormatOpenDocumentText = 23
$wdFormatHTML = 8
$wdFormatRTF = 6
$wdFormatStrictOpenXMLDocument = 24
$wdFormatTemplate = 1
$wdFormatText = 2
$wdFormatTextLineBreaks = 3
$wdFormatUnicodeText = 7
$wdFormatWebArchive = 9
$wdFormatXML = 11
$wdFormatDocument97 = 0
$wdFormatDocumentDefault = 16
$wdFormatPDF = 17
$wdFormatTemplate97 = 1
$wdFormatXMLDocument = 12
$wdFormatXMLDocumentMacroEnabled = 13
$wdFormatXMLTemplate = 14
$wdFormatXMLTemplateMacroEnabled = 15
$wdFormatXPS = 18
$wdDoNotSaveChanges = 0
$wdPromptToSaveChanges = -2
$wdSaveChanges = -1
$wdScrollbarTypeAuto = 0
$wdScrollbarTypeNo = 2
$wdScrollbarTypeYes = 1
$wdSectionDirectionLtr = 1
$wdSectionDirectionRtl = 0
$wdSectionContinuous = 0
$wdSectionEvenPage = 3
$wdSectionNewColumn = 1
$wdSectionNewPage = 2
$wdSectionOddPage = 4
$wdSeekCurrentPageFooter = 10
$wdSeekCurrentPageHeader = 9
$wdSeekEndnotes = 8
$wdSeekEvenPagesFooter = 6
$wdSeekEvenPagesHeader = 3
$wdSeekFirstPageFooter = 5
$wdSeekFirstPageHeader = 2
$wdSeekFootnotes = 7
$wdSeekMainDocument = 0
$wdSeekPrimaryFooter = 4
$wdSeekPrimaryHeader = 1
$wdSelActive = 8
$wdSelAtEOL = 2
$wdSelOvertype = 4
$wdSelReplace = 16
$wdSelStartActive = 1
$wdNoSelection = 0
$wdSelectionBlock = 6
$wdSelectionColumn = 4
$wdSelectionFrame = 3
$wdSelectionInlineShape = 7
$wdSelectionIP = 1
$wdSelectionNormal = 2
$wdSelectionRow = 5
$wdSelectionShape = 8
$wdSeparatorColon = 2
$wdSeparatorEmDash = 3
$wdSeparatorEnDash = 4
$wdSeparatorHyphen = 0
$wdSeparatorPeriod = 1
$wdShapeBottom = -999997
$wdShapeCenter = -999995
$wdShapeInside = -999994
$wdShapeLeft = -999998
$wdShapeOutside = -999993
$wdShapeRight = -999996
$wdShapeTop = -999999
$wdShapePositionRelativeNone = -999999
$wdShapeSizeRelativeNone = -999999
$wdShowFilterFormattingAvailable = 4
$wdShowFilterFormattingInUse = 3
$wdShowFilterStylesAll = 2
$wdShowFilterStylesAvailable = 0
$wdShowFilterStylesInUse = 1
$wdShowFilterFormattingRecommended = 5
$wdShowSourceDocumentsBoth = 3
$wdShowSourceDocumentsNone = 0
$wdShowSourceDocumentsOriginal = 1
$wdShowSourceDocumentsRevised = 2
$wdControlActiveX = 13
$wdControlButton = 6
$wdControlCheckbox = 9
$wdControlCombo = 12
$wdControlDocumentFragment = 14
$wdControlDocumentFragmentURL = 15
$wdControlHelp = 3
$wdControlHelpURL = 4
$wdControlImage = 8
$wdControlLabel = 7
$wdControlLink = 2
$wdControlListbox = 11
$wdControlRadioGroup = 16
$wdControlSeparator = 5
$wdControlSmartTag = 1
$wdControlTextbox = 10
$wdSortFieldAlphanumeric = 0
$wdSortFieldDate = 2
$wdSortFieldJapanJIS = 4
$wdSortFieldKoreaKS = 6
$wdSortFieldNumeric = 1
$wdSortFieldStroke = 5
$wdSortFieldSyllable = 3
$wdSortOrderAscending = 0
$wdSortOrderDescending = 1
$wdSortSeparateByCommas = 1
$wdSortSeparateByDefaultTableSeparator = 2
$wdSortSeparateByTabs = 0
$wdSpanishTuteoAndVoseo = 1
$wdSpanishTuteoOnly = 0
$wdSpanishVoseoOnly = 2
$wdPaneComments = 15
$wdPaneCurrentPageFooter = 17
$wdPaneCurrentPageHeader = 16
$wdPaneEndnoteContinuationNotice = 12
$wdPaneEndnoteContinuationSeparator = 13
$wdPaneEndnotes = 8
$wdPaneEndnoteSeparator = 14
$wdPaneEvenPagesFooter = 6
$wdPaneEvenPagesHeader = 3
$wdPaneFirstPageFooter = 5
$wdPaneFirstPageHeader = 2
$wdPaneFootnoteContinuationNotice = 9
$wdPaneFootnoteContinuationSeparator = 10
$wdPaneFootnotes = 7
$wdPaneFootnoteSeparator = 11
$wdPaneNone = 0
$wdPanePrimaryFooter = 4
$wdPanePrimaryHeader = 1
$wdPaneRevisions = 18
$wdPaneRevisionsHoriz = 19
$wdPaneRevisionsVert = 20
$wdSpellingCapitalization = 2
$wdSpellingCorrect = 0
$wdSpellingNotInDictionary = 1
$wdAnagram = 2
$wdSpellword = 0
$wdWildcard = 1
$wdStatisticCharacters = 3
$wdStatisticCharactersWithSpaces = 5
$wdStatisticFarEastCharacters = 6
$wdStatisticLines = 1
$wdStatisticPages = 2
$wdStatisticParagraphs = 4
$wdStatisticWords = 0
$wdCommentsStory = 4
$wdEndnoteContinuationNoticeStory = 17
$wdEndnoteContinuationSeparatorStory = 16
$wdEndnoteSeparatorStory = 15
$wdEndnotesStory = 3
$wdEvenPagesFooterStory = 8
$wdEvenPagesHeaderStory = 6
$wdFirstPageFooterStory = 11
$wdFirstPageHeaderStory = 10
$wdFootnoteContinuationNoticeStory = 14
$wdFootnoteContinuationSeparatorStory = 13
$wdFootnoteSeparatorStory = 12
$wdFootnotesStory = 2
$wdMainTextStory = 1
$wdPrimaryFooterStory = 9
$wdPrimaryHeaderStory = 7
$wdTextFrameStory = 5
$wdStyleSheetLinkTypeImported = 1
$wdStyleSheetLinkTypeLinked = 0
$wdStyleSheetPrecedenceHigher = -1
$wdStyleSheetPrecedenceHighest = 1
$wdStyleSheetPrecedenceLower = -2
$wdStyleSheetPrecedenceLowest = 0
$wdStyleSortByBasedOn = 3
$wdStyleSortByFont = 2
$wdStyleSortByName = 0
$wdStyleSortByType = 4
$wdStyleSortRecommended = 1
$wdStyleTypeCharacter = 2
$wdStyleTypeList = 4
$wdStyleTypeParagraph = 1
$wdStyleTypeTable = 3
$wdStylisticSet01 = 1
$wdStylisticSet02 = 2
$wdStylisticSet03 = 4
$wdStylisticSet04 = 8
$wdStylisticSet05 = 16
$wdStylisticSet06 = 32
$wdStylisticSet07 = 64
$wdStylisticSet08 = 128
$wdStylisticSet09 = 256
$wdStylisticSet10 = 512
$wdStylisticSet11 = 1024
$wdStylisticSet12 = 2048
$wdStylisticSet13 = 4096
$wdStylisticSet14 = 8192
$wdStylisticSet15 = 16384
$wdStylisticSet16 = 32768
$wdStylisticSet17 = 65536
$wdStylisticSet18 = 131072
$wdStylisticSet19 = 262144
$wdStylisticSet20 = 524288
$wdStylisticSetDefault = 0
$wdSubscriberBestFormat = 0
$wdSubscriberPict = 4
$wdSubscriberRTF = 1
$wdSubscriberText = 2
$wdAlignTabBar = 4
$wdAlignTabCenter = 1
$wdAlignTabDecimal = 3
$wdAlignTabLeft = 0
$wdAlignTabList = 6
$wdAlignTabRight = 2
$wdTabLeaderDashes = 2
$wdTabLeaderDots = 1
$wdTabLeaderHeavy = 4
$wdTabLeaderLines = 3
$wdTabLeaderMiddleDot = 5
$wdTabLeaderSpaces = 0
$wdTableDirectionLtr = 1
$wdTableDirectionRtl = 0
$wdSeparateByCommas = 2
$wdSeparateByDefaultListSeparator = 3
$wdSeparateByParagraphs = 0
$wdSeparateByTabs = 1
$wdTableFormat3DEffects1 = 32
$wdTableFormat3DEffects2 = 33
$wdTableFormat3DEffects3 = 34
$wdTableFormatClassic1 = 4
$wdTableFormatClassic2 = 5
$wdTableFormatClassic3 = 6
$wdTableFormatClassic4 = 7
$wdTableFormatColorful1 = 8
$wdTableFormatColorful2 = 9
$wdTableFormatColorful3 = 10
$wdTableFormatColumns1 = 11
$wdTableFormatColumns2 = 12
$wdTableFormatColumns3 = 13
$wdTableFormatColumns4 = 14
$wdTableFormatColumns5 = 15
$wdTableFormatContemporary = 35
$wdTableFormatElegant = 36
$wdTableFormatGrid1 = 16
$wdTableFormatGrid2 = 17
$wdTableFormatGrid3 = 18
$wdTableFormatGrid4 = 19
$wdTableFormatGrid5 = 20
$wdTableFormatGrid6 = 21
$wdTableFormatGrid7 = 22
$wdTableFormatGrid8 = 23
$wdTableFormatList1 = 24
$wdTableFormatList2 = 25
$wdTableFormatList3 = 26
$wdTableFormatList4 = 27
$wdTableFormatList5 = 28
$wdTableFormatList6 = 29
$wdTableFormatList7 = 30
$wdTableFormatList8 = 31
$wdTableFormatNone = 0
$wdTableFormatApplyAutoFit = 16
$wdTableFormatApplyBorders = 1
$wdTableFormatApplyColor = 8
$wdTableFormatApplyFirstColumn = 128
$wdTableFormatApplyFont = 4
$wdTableFormatApplyHeadingRows = 32
$wdTableFormatApplyLastColumn = 256
$wdTableFormatApplyLastRow = 64
$wdTableFormatApplyShading = 2
$wdTableBottom = -999997
$wdTableCenter = -999995
$wdTableInside = -999994
$wdTableLeft = -999998
$wdTableOutside = -999993
$wdTableRight = -999996
$wdTableTop = -999999
$wdTaskPaneApplyStyles = 17
$wdTaskPaneDocumentActions = 7
$wdTaskPaneDocumentProtection = 6
$wdTaskPaneFaxService = 11
$wdTaskPaneFormatting = 0
$wdTaskPaneHelp = 9
$wdTaskPaneMailMerge = 2
$wdTaskPaneProofing = 20
$wdTaskPaneResearch = 10
$wdTaskPaneRevealFormatting = 1
$wdTaskPaneRevPaneFlex = 22
$wdTaskPaneSearch = 4
$wdTaskPaneSignature = 14
$wdTaskPaneStyleInspector = 15
$wdTaskPaneThesaurus = 23
$wdTaskPaneTranslate = 3
$wdTaskPaneXMLDocument = 12
$wdTaskPaneXMLMapping = 21
$wdTaskPaneXMLStructure = 5
$wdTCSCConverterDirectionAuto = 2
$wdTCSCConverterDirectionSCTC = 0
$wdTCSCConverterDirectionTCSC = 1
$wdAttachedTemplate = 2
$wdGlobalTemplate = 1
$wdNormalTemplate = 0
$wdTightAll = 1
$wdTightFirstAndLastLines = 2
$wdTightFirstLineOnly = 3
$wdTightLastLineOnly = 4
$wdTightNone = 0
$wdCalculationText = 5
$wdCurrentDateText = 3
$wdCurrentTimeText = 4
$wdDateText = 2
$wdNumberText = 1
$wdRegularText = 0
$wdTextOrientationDownward = 3
$wdTextOrientationHorizontal = 0
$wdTextOrientationHorizontalRotatedFarEast = 4
$wdTextOrientationUpward = 2
$wdTextOrientationVerticalFarEast = 1
$wdTextOrientationVertical = 5
$wdTexture10Percent = 100
$wdTexture12Pt5Percent = 125
$wdTexture15Percent = 150
$wdTexture17Pt5Percent = 175
$wdTexture20Percent = 200
$wdTexture22Pt5Percent = 225
$wdTexture25Percent = 250
$wdTexture27Pt5Percent = 275
$wdTexture2Pt5Percent = 25
$wdTexture30Percent = 300
$wdTexture32Pt5Percent = 325
$wdTexture35Percent = 350
$wdTexture37Pt5Percent = 375
$wdTexture40Percent = 400
$wdTexture42Pt5Percent = 425
$wdTexture45Percent = 450
$wdTexture47Pt5Percent = 475
$wdTexture50Percent = 500
$wdTexture52Pt5Percent = 525
$wdTexture55Percent = 550
$wdTexture57Pt5Percent = 575
$wdTexture5Percent = 50
$wdTexture60Percent = 600
$wdTexture62Pt5Percent = 625
$wdTexture65Percent = 650
$wdTexture67Pt5Percent = 675
$wdTexture70Percent = 700
$wdTexture72Pt5Percent = 725
$wdTexture75Percent = 750
$wdTexture77Pt5Percent = 775
$wdTexture7Pt5Percent = 75
$wdTexture80Percent = 800
$wdTexture82Pt5Percent = 825
$wdTexture85Percent = 850
$wdNotThemeColor = -1
$wdThemeColorAccent1 = 4
$wdThemeColorAccent2 = 5
$wdThemeColorAccent3 = 6
$wdThemeColorAccent4 = 7
$wdThemeColorAccent5 = 8
$wdThemeColorAccent6 = 9
$wdThemeColorBackground1 = 12
$wdThemeColorBackground2 = 14
$wdThemeColorHyperlink = 10
$wdThemeColorHyperlinkFollowed = 11
$wdThemeColorMainDark1 = 0
$wdThemeColorMainDark2 = 2
$wdThemeColorMainLight1 = 1
$wdThemeColorMainLight2 = 3
$wdThemeColorText1 = 13
$wdThemeColorText2 = 15
$wdTOAClassic = 1
$wdTOADistinctive = 2
$wdTOAFormal = 3
$wdTOASimple = 4
$wdTOATemplate = 0
$wdTOCClassic = 1
$wdTOCDistinctive = 2
$wdTOCFancy = 3
$wdTOCFormal = 5
$wdTOCModern = 4
$wdTOCSimple = 6
$wdTOCTemplate = 0
$wdTOFCentered = 3
$wdTOFClassic = 1
$wdTOFDistinctive = 2
$wdTOFFormal = 4
$wdTOFSimple = 5
$wdTOFTemplate = 0
$wdTrailingNone = 2
$wdTrailingSpace = 1
$wdTrailingTab = 0
$wdTwoLinesInOneAngleBrackets = 4
$wdTwoLinesInOneCurlyBrackets = 5
$wdTwoLinesInOneNoBrackets = 1
$wdTwoLinesInOneNone = 0
$wdTwoLinesInOneParentheses = 2
$wdTwoLinesInOneSquareBrackets = 3
$wdUnderlineDash = 7
$wdUnderlineDashHeavy = 23
$wdUnderlineDashLong = 39
$wdUnderlineDashLongHeavy = 55
$wdUnderlineDotDash = 9
$wdUnderlineDotDashHeavy = 25
$wdUnderlineDotDotDash = 10
$wdUnderlineDotDotDashHeavy = 26
$wdUnderlineDotted = 4
$wdUnderlineDottedHeavy = 20
$wdUnderlineDouble = 3
$wdUnderlineNone = 0
$wdUnderlineSingle = 1
$wdUnderlineThick = 6
$wdUnderlineWavy = 11
$wdUnderlineWavyDouble = 43
$wdUnderlineWavyHeavy = 27
$wdUnderlineWords = 2
$wdCell = 12
$wdCharacter = 1
$wdCharacterFormatting = 13
$wdColumn = 9
$wdItem = 16
$wdLine = 5
$wdParagraph = 4
$wdParagraphFormatting = 14
$wdRow = 10
$wdScreen = 7
$wdSection = 8
$wdSentence = 3
$wdStory = 6
$wdTable = 15
$wdWindow = 11
$wdWord = 2
$wdListBehaviorAddBulletsNumbering = 1
$wdListBehaviorKeepPreviousPattern = 0
$wdFormattingFromCurrent = 0
$wdFormattingFromPrompt = 2
$wdFormattingFromSelected = 1
$wdAlignVerticalBottom = 3
$wdAlignVerticalCenter = 1
$wdAlignVerticalJustify = 2
$wdAlignVerticalTop = 0
$wdMasterView = 5
$wdNormalView = 1
$wdOutlineView = 2
$wdPrintPreview = 4
$wdPrintView = 3
$wdReadingView = 7
$wdWebView = 6
$wdVisualSelectionBlock = 0
$wdVisualSelectionContinuous = 1
$wdWindowStateMaximize = 1
$wdWindowStateMinimize = 2
$wdWindowStateNormal = 0
$wdWindowDocument = 0
$wdWindowTemplate = 1
$wdDialogBuildingBlockOrganizer = 2067
$wdDialogConnect = 420
$wdDialogConsistencyChecker = 1121
$wdDialogContentControlProperties = 2394
$wdDialogControlRun = 235
$wdDialogConvertObject = 392
$wdDialogCopyFile = 300
$wdDialogCreateAutoText = 872
$wdDialogCreateSource = 1922
$wdDialogCSSLinks = 1261
$wdDialogDocumentInspector = 1482
$wdDialogDocumentStatistics = 78
$wdDialogDrawAlign = 634
$wdDialogDrawSnapToGrid = 633
$wdDialogEditAutoText = 985
$wdDialogEditCreatePublisher = 732
$wdDialogEditFind = 112
$wdDialogEditFrame = 458
$wdDialogEditGoTo = 896
$wdDialogEditGoToOld = 811
$wdDialogEditLinks = 124
$wdDialogEditObject = 125
$wdDialogEditPasteSpecial = 111
$wdDialogEditPublishOptions = 735
$wdDialogEditReplace = 117
$wdDialogEditStyle = 120
$wdDialogEditSubscribeOptions = 736
$wdDialogEditSubscribeTo = 733
$wdDialogEditTOACategory = 625
$wdDialogEmailOptions = 863
$wdDialogFileDocumentLayout = 178
$wdDialogFileFind = 99
$wdDialogFileMacCustomPageSetupGX = 737
$wdDialogFileMacPageSetup = 685
$wdDialogEmailOptionsTabQuoting = 1900002
$wdDialogEmailOptionsTabSignature = 1900000
$wdDialogEmailOptionsTabStationary = 1900001
$wdDialogFilePageSetupTabCharsLines = 150004
$wdDialogFilePageSetupTabLayout = 150003
$wdDialogFilePageSetupTabMargins = 150000
$wdDialogFilePageSetupTabPaper = 150001
$wdDialogFormatBordersAndShadingTabBorders = 700000
$wdDialogFormatBordersAndShadingTabPageBorder = 700001
$wdDialogFormatBordersAndShadingTabShading = 700002
$wdDialogFormatBulletsAndNumberingTabBulleted = 1500000
$wdDialogFormatBulletsAndNumberingTabNumbered = 1500001
$wdDialogFormatBulletsAndNumberingTabOutlineNumbered = 1500002
$wdDialogFormatDrawingObjectTabColorsAndLines = 1200000
$wdDialogFormatDrawingObjectTabHR = 1200007
$wdDialogFormatDrawingObjectTabPicture = 1200004
$wdDialogFormatDrawingObjectTabPosition = 1200002
$wdDialogFormatDrawingObjectTabSize = 1200001
$wdDialogFormatDrawingObjectTabTextbox = 1200005
$wdDialogFormatDrawingObjectTabWeb = 1200006
$wdDialogFormatDrawingObjectTabWrapping = 1200003
$wdDialogFormatFontTabAnimation = 600002
$wdDialogFormatFontTabCharacterSpacing = 600001
$wdDialogFormatFontTabFont = 600000
$wdDialogFormatParagraphTabIndentsAndSpacing = 1000000
$wdDialogFormatParagraphTabTeisai = 1000002
$wdDialogFormatParagraphTabTextFlow = 1000001
$wdDialogInsertIndexAndTablesTabIndex = 400000
$wdDialogInsertIndexAndTablesTabTableOfAuthorities = 400003
$wdDialogInsertIndexAndTablesTabTableOfContents = 400001
$wdDialogInsertIndexAndTablesTabTableOfFigures = 400002
$wdDialogInsertSymbolTabSpecialCharacters = 200001
$wdDialogInsertSymbolTabSymbols = 200000
$wdDialogLetterWizardTabLetterFormat = 1600000
$wdWrapBoth = 0
$wdWrapLargest = 3
$wdWrapLeft = 1
$wdWrapRight = 2
$wdWrapInline = 7
$wdWrapNone = 3
$wdWrapSquare = 0
$wdWrapThrough = 2
$wdWrapTight = 1
$wdWrapTopBottom = 4
$wdWrapBehind = 5
$wdWrapFront = 6
$wdWrapMergeBehind = 3
$wdWrapMergeFront = 4
$wdWrapMergeInline = 0
$wdWrapMergeSquare = 1
$wdWrapMergeThrough = 5
$wdWrapMergeTight = 2
$wdWrapMergeTopBottom = 6
#Excel 2019
$xlAboveAverage = 0
$xlAboveStdDev = 4
$xlBelowAverage = 1
$xlBelowStdDev = 5
$xlEqualAboveAverage = 2
$xlEqualBelowAverage = 3
$xlActionTypeDrillthrough = 256
$xlActionTypeReport = 128
$xlActionTypeRowset = 16
$xlActionTypeUrl = 1
$xlAutomaticAllocation = 2
$xlManualAllocation = 1
$xlEqualAllocation = 1
$xlWeightedAllocation = 2
$xlAllocateIncrement = 2
$xlAllocateValue = 1
$xl24HourClock = 33
$xl4DigitYears = 43
$xlAlternateArraySeparator = 16
$xlColumnSeparator = 14
$xlCountryCode = 1
$xlCountrySetting = 2
$xlCurrencyBefore = 37
$xlCurrencyCode = 25
$xlCurrencyDigits = 27
$xlCurrencyLeadingZeros = 40
$xlCurrencyMinusSign = 38
$xlCurrencyNegative = 28
$xlCurrencySpaceBefore = 36
$xlCurrencyTrailingZeros = 39
$xlDateOrder = 32
$xlDateSeparator = 17
$xlDayCode = 21
$xlDayLeadingZero = 42
$xlDecimalSeparator = 3
$xlGeneralFormatName = 26
$xlHourCode = 22
$xlLeftBrace = 12
$xlLeftBracket = 10
$xlListSeparator = 5
$xlLowerCaseColumnLetter = 9
$xlLowerCaseRowLetter = 8
$xlMDY = 44
$xlMetric = 35
$xlMinuteCode = 23
$xlMonthCode = 20
$xlMonthLeadingZero = 41
$xlMonthNameChars = 30
$xlNoncurrencyDigits = 29
$xlNonEnglishFunctions = 34
$xlColumnThenRow = 2
$xlRowThenColumn = 1
$xlArabicBothStrict = 3
$xlArabicNone = 0
$xlArabicStrictAlefHamza = 1
$xlArabicStrictFinalYaa = 2
$xlArrangeStyleCascade = 7
$xlArrangeStyleHorizontal = -4128
$xlArrangeStyleTiled = 1
$xlArrangeStyleVertical = -4166
$xlArrowHeadLengthLong = 3
$xlArrowHeadLengthMedium = -4138
$xlArrowHeadLengthShort = 1
$xlArrowHeadStyleClosed = 3
$xlArrowHeadStyleDoubleClosed = 5
$xlArrowHeadStyleDoubleOpen = 4
$xlArrowHeadStyleNone = -4142
$xlArrowHeadStyleOpen = 2
$xlArrowHeadWidthMedium = -4138
$xlArrowHeadWidthNarrow = 1
$xlArrowHeadWidthWide = 3
$xlFillCopy = 1
$xlFillDays = 5
$xlFillDefault = 0
$xlFillFormats = 3
$xlFillMonths = 7
$xlFillSeries = 2
$xlFillValues = 4
$xlFillWeekdays = 6
$xlFillYears = 8
$xlGrowthTrend = 10
$xlLinearTrend = 9
$xlFlashFill = 11
$xlAnd = 1
$xlBottom10Items = 4
$xlBottom10Percent = 6
$xlFilterCellColor = 8
$xlFilterDynamic = 11
$xlFilterFontColor = 9
$xlFilterIcon = 10
$xlFilterValues = 7
$xlOr = 2
$xlTop10Items = 3
$xlTop10Percent = 5
$xlAxisCrossesAutomatic = -4105
$xlAxisCrossesCustom = -4114
$xlAxisCrossesMaximum = 2
$xlAxisCrossesMinimum = 4
$xlPrimary = 1
$xlSecondary = 2
$xlCategory = 1
$xlSeriesAxis = 3
$xlValue = 2
$xlBackgroundAutomatic = -4105
$xlBackgroundOpaque = 3
$xlBackgroundTransparent = 2
$xlBox = 0
$xlConeToMax = 5
$xlConeToPoint = 4
$xlCylinder = 3
$xlPyramidToMax = 2
$xlPyramidToPoint = 1
$xlBinsTypeAutomatic = 0
$xlBinsTypeCategorical = 1
$xlBinsTypeManual = 2
$xlBinsTypeBinSize = 3
$xlBinsTypeBinCount = 4
$xlHairline = 1
$xlMedium = -4138
$xlThick = 4
$xlThin = 2
$xlDiagonalDown = 5
$xlDiagonalUp = 6
$xlEdgeBottom = 9
$xlEdgeLeft = 7
$xlEdgeRight = 10
$xlEdgeTop = 8
$xlInsideHorizontal = 12
$xlInsideVertical = 11
$xlDialogActivate = 103
$xlDialogActiveCellFont = 476
$xlDialogAddChartAutoformat = 390
$xlDialogAddinManager = 321
$xlDialogAlignment = 43
$xlDialogApplyNames = 133
$xlDialogApplyStyle = 212
$xlDialogAppMove = 170
$xlDialogAppSize = 171
$xlDialogArrangeAll = 12
$xlDialogAssignToObject = 213
$xlDialogAssignToTool = 293
$xlDialogAttachText = 80
$xlDialogAttachToolbars = 323
$xlDialogAutoCorrect = 485
$xlDialogAxes = 78
$xlDialogBorder = 45
$xlDialogCalculation = 32
$xlDialogCellProtection = 46
$xlDialogChangeLink = 166
$xlDialogChartAddData = 392
$xlDialogChartLocation = 527
$xlDialogChartOptionsDataLabelMultiple = 724
$xlDialogChartOptionsDataLabels = 505
$xlDialogChartOptionsDataTable = 506
$xlDialogChartSourceData = 540
$xlDialogChartTrend = 350
$xlDialogChartType = 526
$xlDialogChartWizard = 288
$xlDialogCheckboxProperties = 435
$xlDialogClear = 52
$xlDialogColorPalette = 161
$xlDialogColumnWidth = 47
$xlDialogCombination = 73
$xlErrDiv0 = 2007
$xlErrNA = 2042
$xlErrName = 2029
$xlErrNull = 2000
$xlErrNum = 2036
$xlErrRef = 2023
$xlErrValue = 2015
$xlAllValues = 0
$xlColGroups = 2
$xlRowGroups = 1
$xlNumberFormatTypeDefault = 0
$xlNumberFormatTypeNumber = 1
$xlNumberFormatTypePercent = 2
$xlCalculatedMeasure = 2
$xlCalculatedMember = 0
$xlCalculatedSet = 1
$xlCalculationAutomatic = -4105
$xlCalculationManual = -4135
$xlCalculationSemiautomatic = 2
$xlAnyKey = 2
$xlEscKey = 1
$xlNoKey = 0
$xlCalculating = 1
$xlDone = 0
$xlPending = 2
$xlCategoryLabelLevelAll = 0xFFFFFFFF
$xlCategoryLabelLevelCustom = 0xFFFFFFFE
$xlCategoryLabelLevelNone = 0xFFFFFFFD
$xlAutomaticScale = -4105
$xlCategoryScale = 2
$xlTimeScale = 3
$xlCellChangeApplied = 3
$xlCellChanged = 2
$xlCellNotChanged = 1
$xlInsertDeleteCells = 1
$xlInsertEntireRows = 2
$xlOverwriteCells = 0
$xlCellTypeAllFormatConditions = -4172
$xlCellTypeAllValidation = -4174
$xlCellTypeBlanks = 4
$xlCellTypeComments = -4144
$xlCellTypeConstants = 2
$xlCellTypeFormulas = -4123
$xlCellTypeLastCell = 11
$xlCellTypeSameFormatConditions = -4173
$xlCellTypeSameValidation = -4175
$xlCellTypeVisible = 12
$xlChartElementPositionAutomatic = -4105
$xlChartElementPositionCustom = -4114
$xlAnyGallery = 23
$xlBuiltIn = 21
$xlUserDefined = 22
$xlAxis = 21
$xlAxisTitle = 17
$xlChartArea = 2
$xlChartTitle = 4
$xlCorners = 6
$xlDataLabel = 0
$xlDataTable = 7
$xlDisplayUnitLabel = 30
$xlDownBars = 20
$xlDropLines = 26
$xlErrorBars = 9
$xlFloor = 23
$xlHiLoLines = 25
$xlLeaderLines = 29
$xlLegend = 24
$xlLegendEntry = 12
$xlLegendKey = 13
$xlMajorGridlines = 15
$xlMinorGridlines = 16
$xlNothing = 28
$xlPivotChartDropZone = 32
$xlPivotChartFieldButton = 31
$xlPlotArea = 19
$xlRadarAxisLabels = 27
$xlSeries = 3
$xlSeriesLines = 22
$xlShape = 14
$xlTrendline = 8
$xlUpBars = 18
$xlWalls = 5
$xlXErrorBars = 10
$xlYErrorBars = 11
$xlLocationAsNewSheet = 1
$xlLocationAsObject = 2
$xlLocationAutomatic = 3
$xlAllFaces = 7
$xlEnd = 2
$xlEndSides = 3
$xlFront = 4
$xlFrontEnd = 6
$xlFrontSides = 5
$xlSides = 1
$xlStack = 2
$xlStackScale = 3
$xlStretch = 1
$xlSplitByCustomSplit = 4
$xlSplitByPercentValue = 3
$xlSplitByPosition = 1
$xlSplitByValue = 2
$xl3DArea = -4098
$xl3DAreaStacked = 78
$xl3DAreaStacked100 = 79
$xl3DBarClustered = 60
$xl3DBarStacked = 61
$xl3DBarStacked100 = 62
$xl3DColumn = -4100
$xl3DColumnClustered = 54
$xl3DColumnStacked = 55
$xl3DColumnStacked100 = 56
$xl3DLine = -4101
$xl3DPie = -4102
$xl3DPieExploded = 70
$xlArea = 1
$xlAreaStacked = 76
$xlAreaStacked100 = 77
$xlBarClustered = 57
$xlBarOfPie = 71
$xlBarStacked = 58
$xlBarStacked100 = 59
$xlBubble = 15
$xlBubble3DEffect = 87
$xlColumnClustered = 51
$xlColumnStacked = 52
$xlColumnStacked100 = 53
$xlConeBarClustered = 102
$xlConeBarStacked = 103
$xlConeBarStacked100 = 104
$xlConeCol = 105
$xlConeColClustered = 99
$xlConeColStacked = 100
$xlConeColStacked100 = 101
$xlCylinderBarClustered = 95
$xlCylinderBarStacked = 96
$xlCheckInMajorVersion = 1
$xlCheckInMinorVersion = 0
$xlCheckInOverwriteVersion = 2
$xlClipboardFormatBIFF = 8
$xlClipboardFormatBIFF12 = 63
$xlClipboardFormatBIFF2 = 18
$xlClipboardFormatBIFF3 = 20
$xlClipboardFormatBIFF4 = 30
$xlClipboardFormatBinary = 15
$xlClipboardFormatBitmap = 9
$xlClipboardFormatCGM = 13
$xlClipboardFormatCSV = 5
$xlClipboardFormatDIF = 4
$xlClipboardFormatDspText = 12
$xlClipboardFormatEmbeddedObject = 21
$xlClipboardFormatEmbedSource = 22
$xlClipboardFormatLink = 11
$xlClipboardFormatLinkSource = 23
$xlClipboardFormatLinkSourceDesc = 32
$xlClipboardFormatMovie = 24
$xlClipboardFormatNative = 14
$xlClipboardFormatObjectDesc = 31
$xlClipboardFormatObjectLink = 19
$xlClipboardFormatOwnerLink = 17
$xlClipboardFormatPICT = 2
$xlClipboardFormatPrintPICT = 3
$xlClipboardFormatRTF = 7
$xlClipboardFormatScreenPICT = 29
$xlClipboardFormatStandardFont = 28
$xlClipboardFormatStandardScale = 27
$xlClipboardFormatSYLK = 6
$xlClipboardFormatTable = 16
$xlClipboardFormatText = 0
$xlClipboardFormatToolFace = 25
$xlClipboardFormatToolFacePICT = 26
$xlClipboardFormatVALU = 1
$xlClipboardFormatWK1 = 10
$xlCmdCube = 1
$xlCmdDAX = 8
$xlCmdDefault = 4
$xlCmdExcel = 7
$xlCmdList = 5
$xlCmdSql = 2
$xlCmdTable = 3
$xlCmdTableCollection = 6
$xlColorIndexAutomatic = -4105
$xlColorIndexNone = -4142
$xlDMYFormat = 4
$xlDYMFormat = 7
$xlEMDFormat = 10
$xlGeneralFormat = 1
$xlMDYFormat = 3
$xlMYDFormat = 6
$xlSkipColumn = 9
$xlTextFormat = 2
$xlYDMFormat = 8
$xlYMDFormat = 5
$xlCommandUnderlinesAutomatic = -4105
$xlCommandUnderlinesOff = -4146
$xlCommandUnderlinesOn = 1
$xlCommentAndIndicator = 1
$xlCommentIndicatorOnly = -1
$xlNoIndicator = 0
$xlConditionValueAutomaticMax = 7
$xlConditionValueAutomaticMin = 6
$xlConditionValueFormula = 4
$xlConditionValueHighestValue = 2
$xlConditionValueLowestValue = 1
$xlConditionValueNone = -1
$xlConditionValueNumber = 0
$xlConditionValuePercent = 3
$xlConditionValuePercentile = 5
$xlConnectionTypeDATAFEED = 6
$xlConnectionTypeMODEL = 7
$xlConnectionTypeNOSOURCE = 9
$xlConnectionTypeODBC = 2
$xlConnectionTypeOLEDB = 1
$xlConnectionTypeTEXT = 4
$xlConnectionTypeWEB = 5
$xlConnectionTypeWORKSHEET = 8
$xlConnectionTypeXMLMAP = 3
$xlAverage = -4106
$xlCount = -4112
$xlCountNums = -4113
$xlDistinctCount = 111
$xlMax = -4136
$xlMin = -4139
$xlProduct = -4149
$xlStDev = -4155
$xlStDevP = -4156
$xlSum = -4157
$xlUnknown = 1000
$xlVar = -4164
$xlVarP = -4165
$xlBeginsWith = 2
$xlContains = 0
$xlDoesNotContain = 1
$xlEndsWith = 3
$xlBitmap = 2
$xlPicture = -4147
$xlExtractData = 2
$xlNormalLoad = 0
$xlRepairFile = 1
$xlCreatorCode = 1480803660
$CredentialsMethodIntegrated = 0
$CredentialsMethodNone = 1
$CredentialsMethodStored = 2
$xlCubeAttribute = 4
$xlCubeCalculatedMeasure = 5
$xlCubeHierarchy = 1
$xlCubeImplicitMeasure = 11
$xlCubeKPIGoal = 7
$xlCubeKPIStatus = 8
$xlCubeKPITrend = 9
$xlCubeKPIValue = 6
$xlCubeKPIWeight = 10
$xlCubeMeasure = 2
$xlCubeSet = 3
$xlHierarchy = 1
$xlMeasure = 2
$xlSet = 3
$xlCopy = 1
$xlCut = 2
$xlValidAlertInformation = 3
$xlValidAlertStop = 1
$xlValidAlertWarning = 2
$xlValidateCustom = 7
$xlValidateDate = 4
$xlValidateDecimal = 2
$xlValidateInputOnly = 0
$xlValidateList = 3
$xlValidateTextLength = 6
$xlValidateTime = 5
$xlValidateWholeNumber = 1
$xlDataBarAxisAutomatic = 0
$xlDataBarAxisMidpoint = 1
$xlDataBarAxisNone = 2
$xlDataBarBorderNone = 0
$xlDataBarBorderSolid = 1
$xlDataBarFillGradient = 1
$xlDataBarFillSolid = 0
$xlDataBarColor = 0
$xlDataBarSameAsPositive = 1
$xlLabelPositionAbove = 0
$xlLabelPositionBelow = 1
$xlLabelPositionBestFit = 5
$xlLabelPositionCenter = -4108
$xlLabelPositionCustom = 7
$xlLabelPositionInsideBase = 4
$xlLabelPositionInsideEnd = 3
$xlLabelPositionLeft = -4131
$xlLabelPositionMixed = 6
$xlLabelPositionOutsideEnd = 2
$xlLabelPositionRight = -4152
$xlDataLabelSeparatorDefault = 1
$xlDataLabelsShowBubbleSizes = 6
$xlDataLabelsShowLabel = 4
$xlDataLabelsShowLabelAndPercent = 5
$xlDataLabelsShowNone = -4142
$xlDataLabelsShowPercent = 3
$xlDataLabelsShowValue = 2
$xlDay = 1
$xlMonth = 3
$xlWeekday = 2
$xlYear = 4
$xlAutoFill = 4
$xlChronological = 3
$xlDataSeriesLinear = -4132
$xlGrowth = 2
$xlShiftToLeft = -4159
$xlShiftUp = -4162
$xlDown = -4121
$xlToLeft = -4159
$xlToRight = -4161
$xlUp = -4162
$xlInterpolated = 3
$xlNotPlotted = 1
$xlZero = 2
$xlDisplayShapes = -4104
$xlHide = 3
$xlPlaceholders = 2
$xlHundredMillions = -8
$xlHundreds = -2
$xlHundredThousands = -5
$xlMillionMillions = -10
$xlMillions = -6
$xlTenMillions = -7
$xlTenThousands = -4
$xlThousandMillions = -9
$xlThousands = -3
$xlDuplicate = 1
$xlUnique = 0
$xlFilterAboveAverage = 33
$xlFilterAllDatesInPeriodApril = 24
$xlFilterAllDatesInPeriodAugust = 28
$xlFilterAllDatesInPeriodDecember = 32
$xlFilterAllDatesInPeriodFebruary = 22
$xlFilterAllDatesInPeriodJanuary = 21
$xlFilterAllDatesInPeriodJuly = 27
$xlFilterAllDatesInPeriodJune = 26
$xlFilterAllDatesInPeriodMarch = 23
$xlFilterAllDatesInPeriodMay = 25
$xlFilterAllDatesInPeriodNovember = 31
$xlFilterAllDatesInPeriodOctober = 30
$xlFilterAllDatesInPeriodQuarter1 = 17
$xlFilterAllDatesInPeriodQuarter2 = 18
$xlFilterAllDatesInPeriodQuarter3 = 19
$xlFilterAllDatesInPeriodQuarter4 = 20
$xlFilterAllDatesInPeriodSeptember = 29
$xlFilterBelowAverage = 34
$xlFilterLastMonth = 8
$xlFilterLastQuarter = 11
$xlFilterLastWeek = 5
$xlFilterLastYear = 14
$xlFilterNextMonth = 9
$xlFilterNextQuarter = 12
$xlFilterNextWeek = 6
$xlFilterNextYear = 15
$xlFilterThisMonth = 7
$xlFilterThisQuarter = 10
$xlFilterThisWeek = 4
$xlFilterThisYear = 13
$xlFilterToday = 1
$xlFilterTomorrow = 3
$xlFilterYearToDate = 16
$xlFilterYesterday = 2
$xlBIFF = 2
$xlPICT = 1
$xlRTF = 4
$xlVALU = 8
$xlAutomaticUpdate = 4
$xlCancel = 1
$xlChangeAttributes = 6
$xlManualUpdate = 5
$xlOpenSource = 3
$xlSelect = 3
$xlSendPublisher = 2
$xlUpdateSubscriber = 2
$xlPublisher = 1
$xlSubscriber = 2
$xlDisabled = 0
$xlErrorHandler = 2
$xlInterrupt = 1
$xlNoRestrictions = 0
$xlNoSelection = -4142
$xlUnlockedCells = 1
$xlCap = 1
$xlNoCap = 2
$xlX = -4168
$xlY = 1
$xlErrorBarIncludeBoth = 1
$xlErrorBarIncludeMinusValues = 3
$xlErrorBarIncludeNone = -4142
$xlErrorBarIncludePlusValues = 2
$xlErrorBarTypeCustom = -4114
$xlErrorBarTypeFixedValue = 1
$xlErrorBarTypePercent = 2
$xlErrorBarTypeStDev = -4155
$xlErrorBarTypeStError = 4
$xlEmptyCellReferences = 7
$xlEvaluateToError = 1
$xlInconsistentFormula = 4
$xlInconsistentListFormula = 9
$xlListDataValidation = 8
$xlNumberAsText = 3
$xlOmittedCells = 5
$xlTextDate = 2
$xlUnlockedFormulaCells = 6
$xlReadOnly = 3
$xlReadWrite = 2
$xlAddIn = 18
$xlAddIn8 = 18
$xlCSV = 6
$xlCSVMac = 22
$xlCSVMSDOS = 24
$xlCSVUTF8 = 62
$xlCSVWindows = 23
$xlCurrentPlatformText = -4158
$xlDBF2 = 7
$xlDBF3 = 8
$xlDBF4 = 11
$xlDIF = 9
$xlExcel12 = 50
$xlExcel2 = 16
$xlExcel2FarEast = 27
$xlExcel3 = 29
$xlExcel4 = 33
$xlExcel4Workbook = 35
$xlExcel5 = 39
$xlExcel7 = 39
$xlExcel8 = 56
$xlUnicodeText = 42
$xlExcel9795 = 43
$xlWebArchive = 45
$xlHtml = 44
$xlIntlAddIn = 26
$xlIntlMacro = 25
$xlOpenDocumentSpreadsheet = 60
$xlOpenXMLAddIn = 55
$xlOpenXMLStrictWorkbook = 61
$xlOpenXMLTemplate = 54
$xlOpenXMLTemplateMacroEnabled = 53
$xlOpenXMLWorkbook = 51
$xlOpenXMLWorkbookMacroEnabled = 52
$xlSYLK = 2
$xlTemplate = 17
$xlTemplate8 = 17
$xlTextMac = 19
$xlTextMSDOS = 21
$xlTextPrinter = 36
$xlTextWindows = 20

$xlWJ2WD1 = 14
$xlWJ3 = 40
$xlWJ3FJ3 = 41
$xlWK1 = 5
$xlWK1ALL = 31
$xlWK1FMT = 30
$xlWK3 = 15
$xlWK3FM3 = 32
$xlWK4 = 38
$xlWKS = 4
$xlWorkbookDefault = 51
$xlWorkbookNormal = -4143
$xlWorks2FarEast = 28
$xlWQ1 = 34
$xlXMLSpreadsheet = 46
$xlFileValidationPivotDefault = 0
$xlFileValidationPivotRun = 1
$xlFileValidationPivotSkip = 2
$xlFillWithAll = -4104
$xlFillWithContents = 2
$xlFillWithFormats = -4122
$xlFilterCopy = 2
$xlFilterInPlace = 1
$xlFilterAllDatesInPeriodDay = 2
$xlFilterAllDatesInPeriodHour = 3
$xlFilterAllDatesInPeriodMinute = 4
$xlFilterAllDatesInPeriodMonth = 1
$xlFilterAllDatesInPeriodSecond = 5
$xlFilterAllDatesInPeriodYear = 0
$xlFilterStatusOK = 0
$xlFilterStatusDateWrongOrder = 1
$xlFilterStatusDateHasTime = 2
$xlFilterStatusInvalidDate = 3
$xlComments = -4144
$xlCommentsThreaded = -4184
$xlFormulas = -4123
$xlValues = -4163
$xlQualityMinimum = 1
$xlQualityStandard = 0
$xlTypePDF = 0
$xlTypeXPS = 1
$xlForecastAggregationCount = 2
$xlForecastAggregationCountA = 3
$xlForecastAggregationMax = 4
$xlForecastAggregationMedian = 5
$xlForecastAggregationMin = 6
$xlForecastAggregationSum = 7
$xlForecastChartTypeLine = 0
$xlForecastDataCompletionZeros = 0
$xlButtonControl = 0
$xlCheckBox = 1
$xlDropDown = 2
$xlEditBox = 3
$xlGroupBox = 4
$xlLabel = 5
$xlListBox = 6
$xlOptionButton = 7
$xlScrollBar = 8
$xlSpinner = 9
$xlBetween = 1
$xlEqual = 3
$xlGreater = 5
$xlGreaterEqual = 7
$xlLess = 6
$xlLessEqual = 8
$xlNotBetween = 2
$xlNotEqual = 4
$xlAboveAverageCondition = 12
$xlBlanksCondition = 10
$xlCellValue = 1
$xlColorScale = 3
$xlDataBar = 4
$xlErrorsCondition = 16
$xlExpression = 2
$xlIconSet = 6
$xlNoBlanksCondition = 13
$xlNoErrorsCondition = 17
$xlTextString = 9
$xlTimePeriod = 11
$xlTop10 = 5
$xlUniqueValues = 8
$FilterBottom = 0
$FilterBottomPercent = 2
$FilterTop = 1
$FilterTopPercent = 3
$xlColumnLabels = 2
$xlMixedLabels = 3
$xlNoLabels = -4142
$xlRowLabels = 1
$xlA1TableRefs = 0
$xlTableNames = 1
$xlGeoMappingLevelAutomatic = 0
$xlGeoMappingLevelDataOnly = 1
$xlGeoMappingLevelPostalCode = 2
$xlGeoMappingLevelCounty = 3
$xlGeoMappingLevelState = 4
$xlGeoMappingLevelCountryRegion = 5
$xlGeoMappingLevelCountryRegionList = 6
$xlGeoMappingLevelWorld = 7
$xlGeoProjectionTypeAutomatic = 0
$xlGeoProjectionTypeMercator = 1
$xlGeoProjectionTypeMiller = 2
$xlGeoProjectionTypeAlbers = 3
$xlGeoProjectionTypeRobinson = 4
$GradientFillLinear = 0
$GradientFillPath = 1
$xlHAlignCenter = -4108
$xlHAlignCenterAcrossSelection = 7
$xlHAlignDistributed = -4117
$xlHAlignFill = 5
$xlHAlignGeneral = 1
$xlHAlignJustify = -4130
$xlHAlignLeft = -4131
$xlHAlignRight = -4152
$xlHebrewFullScript = 0
$xlHebrewMixedAuthorizedScript = 3
$xlHebrewMixedScript = 2
$xlHebrewPartialScript = 1
$xlAllChanges = 2
$xlNotYetReviewed = 3
$xlSinceMyLastSave = 1
$xlHtmlCalc = 1
$xlHtmlChart = 3
$xlHtmlList = 2
$xlHtmlStatic = 0
$xlIMEModeAlpha = 8
$xlIMEModeAlphaFull = 7
$xlIMEModeDisable = 3
$xlIMEModeHangul = 10
$xlIMEModeHangulFull = 9
$xlIMEModeHiragana = 4
$xlIMEModeKatakana = 5
$xlIMEModeKatakanaHalf = 6
$xlIMEModeNoControl = 0
$xlIMEModeOff = 2
$xlIMEModeOn = 1
$xlIcon0Bars = 37
$xlIcon0FilledBoxes = 52
$xlIcon1Bar = 38
$xlIcon1FilledBox = 51
$xlIcon2Bars = 39
$xlIcon2FilledBoxes = 50
$xlIcon3Bars = 40
$xlIcon3FilledBoxes = 49
$xlIcon4Bars = 41
$xlIcon4FilledBoxes = 48
$xlIconBlackCircle = 32
$xlIconBlackCircleWithBorder = 13
$xlIconCircleWithOneWhiteQuarter = 33
$xlIconCircleWithThreeWhiteQuarters = 35
$xlIconCircleWithTwoWhiteQuarters = 34
$xlIconGoldStar = 42
$xlIconGrayCircle = 31
$xlIconGrayDownArrow = 6
$xlIconGrayDownInclineArrow = 28
$xlIconGraySideArrow = 5
$xlIconGrayUpArrow = 4
$xlIconGrayUpInclineArrow = 27
$xlIconGreenCheck = 22
$xlIconGreenCheckSymbol = 19
$xlIconGreenCircle = 10
$xlIconGreenFlag = 7
$xlIconGreenTrafficLight = 14
$xlIconGreenUpArrow = 1
$xlIconGreenUpTriangle = 45
$xlIconHalfGoldStar = 43
$xlIconNoCellIcon = -1
$xlIconPinkCircle = 30
$xlIconRedCircle = 29
$xlIconRedCircleWithBorder = 12
$xl3Arrows = 1
$xl3ArrowsGray = 2
$xl3Flags = 3
$xl3Signs = 6
$xl3Symbols = 7
$xl3TrafficLights1 = 4
$xl3TrafficLights2 = 5
$xl4Arrows = 8
$xl4ArrowsGray = 9
$xl4CRV = 11
$xl4RedToBlack = 10
$xl4TrafficLights = 12
$xl5Arrows = 13
$xl5ArrowsGray = 14
$xl5CRV = 15
$xl5Quarters = 16
$xlPivotTableReport = 1
$xlQueryTable = 0
$xlFormatFromLeftOrAbove = 0
$xlFormatFromRightOrBelow = 1
$xlShiftDown = -4121
$xlShiftToRight = -4161
$xlOutline = 1
$xlTabular = 0
$xlCompactRow = 0
$xlOutlineRow = 2
$xlTabularRow = 1
$xlLegendPositionBottom = -4107
$xlLegendPositionCorner = 2
$xlLegendPositionCustom = -4161
$xlLegendPositionLeft = -4131
$xlLegendPositionRight = -4152
$xlLegendPositionTop = -4160
$xlContinuous = 1
$xlDash = -4115
$xlDashDot = 4
$xlDashDotDot = 5
$xlDot = -4118
$xlDouble = -4119
$xlLineStyleNone = -4142
$xlSlantDashDot = 13
$xlExcelLinks = 1
$xlOLELinks = 2
$xlPublishers = 5
$xlSubscribers = 6
$xlEditionDate = 2
$xlLinkInfoStatus = 3
$xlUpdateState = 1
$xlLinkInfoOLELinks = 2
$xlLinkInfoPublishers = 5
$xlLinkInfoSubscribers = 6
$xlLinkStatusCopiedValues = 10
$xlLinkStatusIndeterminate = 5
$xlLinkStatusInvalidName = 7
$xlLinkStatusMissingFile = 1
$xlLinkStatusMissingSheet = 2
$xlLinkStatusNotStarted = 6
$xlLinkStatusOK = 0
$xlLinkStatusOld = 3
$xlLinkStatusSourceNotCalculated = 4
$xlLinkStatusSourceNotOpen = 8
$xlLinkStatusSourceOpen = 9
$xlLinkTypeExcelLinks = 1
$xlLinkTypeOLELinks = 2
$xlLinkedDataTypeStateNone = 0
$xlLinkedDataTypeStateValidLinkedData = 1
$xlLinkedDataTypeStateDisambiguationNeeded = 2
$xlLinkedDataTypeStateBrokenLinkedData = 3
$xlLinkedDataTypeStateFetchingData = 4
$xlListConflictDialog = 0
$xlListConflictDiscardAllConflicts = 2
$xlListConflictError = 3
$xlListConflictRetryAllConflicts = 1
$xlListDataTypeCheckbox = 9
$xlListDataTypeChoice = 6
$xlListDataTypeChoiceMulti = 7
$xlListDataTypeCounter = 11
$xlListDataTypeCurrency = 4
$xlListDataTypeDateTime = 5
$xlListDataTypeHyperLink = 10
$xlListDataTypeListLookup = 8
$xlListDataTypeMultiLineRichText = 12
$xlListDataTypeMultiLineText = 2
$xlListDataTypeNone = 0
$xlListDataTypeNumber = 3
$xlListDataTypeText = 1
$xlSrcExternal = 0
$xlSrcModel = 4
$xlSrcQuery = 3
$xlSrcRange = 1
$xlSrcXml = 2
$xlColumnHeader = -4110
$xlColumnItem = 5
$xlDataHeader = 3
$xlDataItem = 7
$xlPageHeader = 2
$xlPageItem = 6
$xlRowHeader = -4153
$xlRowItem = 4
$xlTableBody = 8
$xlPart = 2
$xlWhole = 1
$LookForBlanks = 0
$LookForErrors = 1
$LookForFormulas = 2
$xlMicrosoftAccess = 4
$xlMicrosoftFoxPro = 5
$xlMicrosoftMail = 3
$xlMicrosoftPowerPoint = 2
$xlMicrosoftProject = 6
$xlMicrosoftSchedulePlus = 7
$xlMicrosoftWord = 1
$xlMAPI = 1
$xlNoMailSystem = 0
$xlPowerTalk = 2
$xlMarkerStyleAutomatic = -4105
$xlMarkerStyleCircle = 8
$xlMarkerStyleDash = -4115
$xlMarkerStyleDiamond = 2
$xlMarkerStyleDot = -4118
$xlMarkerStyleNone = -4142
$xlMarkerStylePicture = -4147
$xlMarkerStylePlus = 9
$xlMarkerStyleSquare = 1
$xlMarkerStyleStar = 5
$xlMarkerStyleTriangle = 3
$xlMarkerStyleX = -4168
$xlCentimeters = 1
$xlInches = 0
$xlMillimeters = 2
$xlChangeByExcel = 0
$xlChangeByPowerPivotAddIn = 1
$xlNoButton = 0
$xlPrimaryButton = 1
$xlSecondaryButton = 2
$xlDefault = -4143
$xlIBeam = 3
$xlNorthwestArrow = 1
$xlWait = 2
$xlOLEControl = 2
$xlOLEEmbed = 1
$xlOLELink = 0
$xlVerbOpen = 2
$xlVerbPrimary = 1
$xlOartHorizontalOverflowClip = 1
$xlOartHorizontalOverflowOverflow = 0
$xlOartVerticalOverflowClip = 1
$xlOartVerticalOverflowEllipsis = 2
$xlOartVerticalOverflowOverflow = 0
$xlFitToPage = 2
$xlFullPage = 3
$xlScreenSize = 1
$xlDownThenOver = 1
$xlOverThenDown = 2
$xlDownward = -4170
$xlHorizontal = -4128
$xlUpward = -4171
$xlVertical = -4166
$xlBlanks = 4
$xlButton = 15
$xlDataAndLabel = 0
$xlDataOnly = 2
$xlFirstRow = 256
$xlLabelOnly = 1
$xlOrigin = 3
$xlPageBreakAutomatic = -4105
$xlPageBreakManual = -4135
$xlPageBreakNone = -4142
$xlPageBreakFull = 1
$xlPageBreakPartial = 2
$xlLandscape = 2
$xlPortrait = 1
$xlPaper10x14 = 16
$xlPaper11x17 = 17
$xlPaperA3 = 8
$xlPaperA4 = 9
$xlPaperA4Small = 10
$xlPaperA5 = 11
$xlPaperB4 = 12
$xlPaperB5 = 13
$xlPaperCsheet = 24
$xlPaperDsheet = 25
$xlPaperEnvelope10 = 20
$xlPaperEnvelope11 = 21
$xlPaperEnvelope12 = 22
$xlPaperEnvelope14 = 23
$xlPaperEnvelope9 = 19
$xlPaperEnvelopeB4 = 33
$xlPaperEnvelopeB5 = 34
$xlPaperEnvelopeB6 = 35
$xlPaperEnvelopeC3 = 29
$xlPaperEnvelopeC4 = 30
$xlPaperEnvelopeC5 = 28
$xlPaperEnvelopeC6 = 31
$xlPaperEnvelopeC65 = 32
$xlPaperEnvelopeDL = 27
$xlPaperEnvelopeItaly = 36
$xlPaperEnvelopeMonarch = 37
$xlPaperEnvelopePersonal = 38
$xlPaperEsheet = 26
$xlPaperExecutive = 7
$xlPaperFanfoldLegalGerman = 41
$xlPaperFanfoldStdGerman = 40
$xlPaperFanfoldUS = 39
$xlPaperFolio = 14
$xlPaperLedger = 4
$xlParamTypeBigInt = -5
$xlParamTypeBinary = -2
$xlParamTypeBit = -7
$xlParamTypeChar = 1
$xlParamTypeDate = 9
$xlParamTypeDecimal = 3
$xlParamTypeDouble = 8
$xlParamTypeFloat = 6
$xlParamTypeInteger = 4
$xlParamTypeLongVarBinary = -4
$xlParamTypeLongVarChar = -1
$xlParamTypeNumeric = 2
$xlParamTypeReal = 7
$xlParamTypeSmallInt = 5
$xlParamTypeTime = 10
$xlParamTypeTimestamp = 11
$xlParamTypeTinyInt = -6
$xlParamTypeUnknown = 0
$xlParamTypeVarBinary = -3
$xlParamTypeVarChar = 12
$xlParamTypeWChar = -8
$xlConstant = 1
$xlPrompt = 0
$xlRange = 2
$xlParentDataLabelOptionsBanner = 1
$xlParentDataLabelOptionsNone = 0
$xlParentDataLabelOptionsOverlapping = 2
$xlPasteSpecialOperationAdd = 2
$xlPasteSpecialOperationDivide = 5
$xlPasteSpecialOperationMultiply = 4
$xlPasteSpecialOperationNone = -4142
$xlPasteSpecialOperationSubtract = 3
$xlPasteAll = -4104
$xlPasteAllExceptBorders = 7
$xlPasteAllMergingConditionalFormats = 14
$xlPasteAllUsingSourceTheme = 13
$xlPasteColumnWidths = 8
$xlPasteComments = -4144
$xlPasteFormats = -4122
$xlPasteFormulas = -4123
$xlPasteFormulasAndNumberFormats = 11
$xlPasteValidation = 6
$xlPasteValues = -4163
$xlPasteValuesAndNumberFormats = 12
$xlPatternAutomatic = -4105
$xlPatternChecker = 9
$xlPatternCrissCross = 16
$xlPatternDown = -4121
$xlPatternGray16 = 17
$xlPatternGray25 = -4124
$xlPatternGray50 = -4125
$xlPatternGray75 = -4126
$xlPatternGray8 = 18
$xlPatternGrid = 15
$xlPatternHorizontal = -4128
$xlPatternLightDown = 13
$xlPatternLightHorizontal = 11
$xlPatternLightUp = 14
$xlPatternLightVertical = 12
$xlPatternNone = -4142
$xlPatternSemiGray75 = 10
$xlPatternSolid = 1
$xlPatternUp = -4162
$xlPatternVertical = -4166
$xlPhoneticAlignCenter = 2
$xlPhoneticAlignDistributed = 3
$xlPhoneticAlignLeft = 1
$xlPhoneticAlignNoControl = 0
$xlHiragana = 2
$xlKatakana = 1
$xlKatakanaHalf = 0
$xlNoConversion = 3
$xlPrinter = 2
$xlScreen = 1
$xlBMP = 1
$xlCGM = 7
$xlDRW = 4
$xlDXF = 5
$xlEPS = 8
$xlHGL = 6
$xlPCT = 13
$xlPCX = 10
$xlPIC = 11
$xlPLT = 12
$xlTIF = 9
$xlWMF = 2
$xlWPG = 3
$xlCenterPoint = 5
$xlInnerCenterPoint = 8
$xlInnerClockwisePoint = 7
$xlInnerCounterClockwisePoint = 9
$xlMidClockwiseRadiusPoint = 4
$xlMidCounterClockwiseRadiusPoint = 6
$xlOuterCenterPoint = 2
$xlOuterClockwisePoint = 3
$xlOuterCounterClockwisePoint = 1
$xlHorizontalCoordinate = 1
$xlVerticalCoordinate = 2
$xlPivotCellBlankCell = 9
$xlPivotCellCustomSubtotal = 7
$xlPivotCellDataField = 4
$xlPivotCellDataPivotField = 8
$xlPivotCellGrandTotal = 3
$xlPivotCellPageFieldItem = 6
$xlPivotCellPivotField = 5
$xlPivotCellPivotItem = 1
$xlPivotCellSubtotal = 2
$xlPivotCellValue = 0
$xlDataFieldScope = 2
$xlFieldsScope = 1
$xlSelectionScope = 0
$xlDifferenceFrom = 2
$xlIndex = 9
$xlNoAdditionalCalculation = -4143
$xlPercentDifferenceFrom = 4
$xlPercentOf = 3
$xlPercentOfColumn = 7
$xlPercentOfParent = 12
$xlPercentOfParentColumn = 11
$xlPercentOfParentRow = 10
$xlPercentOfRow = 6
$xlPercentOfTotal = 8
$xlPercentRunningTotal = 13
$xlRankAscending = 14
$xlRankDecending = 15
$xlRunningTotal = 5
$xlDate = 2
$xlNumber = -4145
$xlText = -4158
$xlColumnField = 2
$xlDataField = 4
$xlHidden = 0
$xlPageField = 3
$xlRowField = 1
$xlDoNotRepeatLabels = 1
$xlRepeatLabels = 2
$xlBefore = 31
$xlBeforeOrEqualTo = 32
$xlAfter = 33
$xlAfterOrEqualTo = 34
$xlAllDatesInPeriodJanuary = 57
$xlAllDatesInPeriodFebruary = 58
$xlAllDatesInPeriodMarch = 59
$xlAllDatesInPeriodApril = 60
$xlAllDatesInPeriodMay = 61
$xlAllDatesInPeriodJune = 62
$xlAllDatesInPeriodJuly = 63
$xlAllDatesInPeriodAugust = 64
$xlAllDatesInPeriodSeptember = 65
$xlAllDatesInPeriodOctober = 66
$xlAllDatesInPeriodNovember = 67
$xlAllDatesInPeriodDecember = 68
$xlAllDatesInPeriodQuarter1 = 53
$xlAllDatesInPeriodQuarter2 = 54
$xlAllDatesInPeriodQuarter3 = 55
$xlAllDatesInPeriodQuarter4 = 56
$xlBottomCount = 2
$xlBottomPercent = 4
$xlBottomSum = 6
$xlCaptionBeginsWith = 17
$xlCaptionContains = 21
$xlCaptionDoesNotBeginWith = 18
$xlCaptionDoesNotContain = 22
$xlCaptionDoesNotEndWith = 20
$xlCaptionDoesNotEqual = 16
$xlCaptionEndsWith = 19
$xlCaptionEquals = 15
$xlCaptionIsBetween = 27
$xlCaptionIsGreaterThan = 23
$xlCaptionIsGreaterThanOrEqualTo = 24
$xlPTClassic = 20
$xlPTNone = 21
$xlReport1 = 0
$xlReport10 = 9
$xlReport2 = 1
$xlReport3 = 2
$xlReport4 = 3
$xlReport5 = 4
$xlReport6 = 5
$xlReport7 = 6
$xlReport8 = 7
$xlReport9 = 8
$xlTable1 = 10
$xlTable10 = 19
$xlTable2 = 11
$xlTable3 = 12
$xlTable4 = 13
$xlTable5 = 14
$xlTable6 = 15
$xlTable7 = 16
$xlTable8 = 17
$xlTable9 = 18
$xlPivotLineBlank = 3
$xlPivotLineGrandTotal = 2
$xlPivotLineRegular = 0
$xlPivotLineSubtotal = 1
$xlMissingItemsDefault = -1
$xlMissingItemsMax = 32500
$xlMissingItemsMax2 = 1048576
$xlMissingItemsNone = 0
$xlConsolidation = 3
$xlDatabase = 1
$xlExternal = 2
$xlPivotTable = -4148
$xlScenario = 4
$xlPivotTableVersion2000 = 0
$xlPivotTableVersion10 = 1
$xlPivotTableVersion11 = 2
$xlPivotTableVersion12 = 3
$xlPivotTableVersion14 = 4
$xlPivotTableVersion15 = 5
$xlPivotTableVersionCurrent = -1
$xlFreeFloating = 3
$xlMove = 2
$xlMoveAndSize = 1
$xlMacintosh = 1
$xlMSDOS = 3
$xlWindows = 2
$xlPortugueseBoth = 3
$xlPortuguesePostReform = 2
$xlPortuguesePreReform = 1
$xlPrintErrorsBlank = 1
$xlPrintErrorsDash = 2
$xlPrintErrorsDisplayed = 0
$xlPrintErrorsNA = 3
$xlPrintInPlace = 16
$xlPrintNoComments = -4142
$xlPrintSheetEnd = 1
$xlPriorityHigh = -4127
$xlPriorityLow = -4134
$xlPriorityNormal = -4143
$xlDisplayPropertyInPivotTable = 1
$xlDisplayPropertyInPivotTableAndTooltip = 3
$xlDisplayPropertyInTooltip = 2
$xlProtectedViewCloseEdit = 1
$xlProtectedViewCloseForced = 2
$xlProtectedViewCloseNormal = 0
$xlProtectedViewWindowMaximized = 2
$xlProtectedViewWindowMinimized = 1
$xlProtectedViewWindowNormal = 0
$xlADORecordset = 7
$xlDAORecordset = 2
$xlODBCQuery = 1
$xlOLEDBQuery = 5
$xlTextImport = 6
$xlWebQuery = 4
$xlLensOnly = 0
$xlFormatConditions = 1
$xlRecommendedCharts = 2
$xlTotals = 3
$xlTables = 4
$xlSparklines = 5
$xlRangeAutoFormat3DEffects1 = 13
$xlRangeAutoFormat3DEffects2 = 14
$xlRangeAutoFormatAccounting1 = 4
$xlRangeAutoFormatAccounting2 = 5
$xlRangeAutoFormatAccounting3 = 6
$xlRangeAutoFormatAccounting4 = 17
$xlRangeAutoFormatClassic1 = 1
$xlRangeAutoFormatClassic2 = 2
$xlRangeAutoFormatClassic3 = 3
$xlRangeAutoFormatClassicPivotTable = 31
$xlRangeAutoFormatColor1 = 7
$xlRangeAutoFormatColor2 = 8
$xlRangeAutoFormatColor3 = 9
$xlRangeAutoFormatList1 = 10
$xlRangeAutoFormatList2 = 11
$xlRangeAutoFormatList3 = 12
$xlRangeAutoFormatLocalFormat1 = 15
$xlRangeAutoFormatLocalFormat2 = 16
$xlRangeAutoFormatLocalFormat3 = 19
$xlRangeAutoFormatLocalFormat4 = 20
$xlRangeAutoFormatNone = -4142
$xlRangeAutoFormatPTNone = 42
$xlRangeAutoFormatReport1 = 21
$xlRangeAutoFormatReport10 = 30
$xlRangeAutoFormatReport2 = 22
$xlRangeAutoFormatReport3 = 23
$xlRangeAutoFormatReport4 = 24
$xlRangeAutoFormatReport5 = 25
$xlRangeAutoFormatReport6 = 26
$xlRangeAutoFormatReport7 = 27
$xlRangeAutoFormatReport8 = 28
$xlRangeAutoFormatReport9 = 29
$xlRangeAutoFormatSimple = -4154
$xlRangeAutoFormatTable1 = 32
$xlRangeValueDefault = 10
$xlRangeValueMSPersistXML = 12
$xlRangeValueXMLSpreadsheet = 11
$xlA1 = 1
$xlR1C1 = -4150
$xlAbsolute = 1
$xlAbsRowRelColumn = 2
$xlRelative = 4
$xlRelRowAbsColumn = 3
$xlRegionLabelOptionsNone = 0
$xlRegionLabelOptionsBestFitOnly = 1
$xlRegionLabelOptionsShowAll = 2
$xlRDIAll = 99
$xlRDIComments = 1
$xlRDIContentType = 16
$xlRDIDefinedNameComments = 18
$xlRDIDocumentManagementPolicy = 15
$xlRDIDocumentProperties = 8
$xlRDIDocumentServerProperties = 14
$xlRDIDocumentWorkspace = 10
$xlRDIEmailHeader = 5
$xlRDIExcelDataModel = 23
$xlRDIInactiveDataConnections = 19
$xlRDIInkAnnotations = 11
$xlRDIInlineWebExtensions = 21
$xlRDIPrinterPath = 20
$xlRDIPublishInfo = 13
$xlRDIRemovePersonalInformation = 4
$xlRDIRoutingSlip = 6
$xlRDIScenarioComments = 12
$xlRDISendForReview = 7
$xlRDITaskpaneWebExtensions = 22
$rgbAliceBlue = 16775408
$rgbAntiqueWhite = 14150650
$rgbAqua = 16776960
$rgbAquamarine = 13959039
$rgbAzure = 16777200
$rgbBeige = 14480885
$rgbBisque = 12903679
$rgbBlack = 0
$rgbBlanchedAlmond = 13495295
$rgbBlue = 16711680
$rgbBlueViolet = 14822282
$rgbBrown = 2763429
$rgbBurlyWood = 8894686
$rgbCadetBlue = 10526303
$rgbChartreuse = 65407
$rgbCoral = 5275647
$rgbCornflowerBlue = 15570276
$rgbCornsilk = 14481663
$rgbCrimson = 3937500
$rgbDarkBlue = 9109504
$rgbDarkCyan = 9145088
$rgbDarkGoldenrod = 755384
$rgbDarkGray = 11119017
$rgbDarkGreen = 25600
$rgbDarkGrey = 11119017
$rgbDarkKhaki = 7059389
$rgbDarkMagenta = 9109643
$rgbDarkOliveGreen = 3107669
$rgbDarkOrange = 36095
$rgbDarkOrchid = 13382297
$rgbDarkRed = 139
$rgbDarkSalmon = 8034025
$rgbDarkSeaGreen = 9419919
$rgbDarkSlateBlue = 9125192
$xlAlways = 1
$xlAsRequired = 0
$xlNever = 2
$xlColumns = 2
$xlRows = 1
$xlAutoActivate = 3
$xlAutoClose = 2
$xlAutoDeactivate = 4
$xlAutoOpen = 1
$xlDoNotSaveChanges = 2
$xlSaveChanges = 1
$xlExclusive = 3
$xlNoChange = 1
$xlShared = 2
$xlLocalSessionChanges = 2
$xlOtherSessionChanges = 3
$xlUserResolution = 1
$xlScaleLinear = -4132
$xlScaleLogarithmic = -4133
$xlNext = 1
$xlPrevious = 2
$xlByColumns = 2
$xlByRows = 1
$xlWithinSheet = 1
$xlWithinWorkbook = 2
$xlSeriesNameLevelAll = 0xFFFFFFFF
$xlSeriesNameLevelCustom = 0xFFFFFFFE
$xlSeriesNameLevelNone = 0xFFFFFFFD
$xlChart = -4109
$xlDialogSheet = -4116
$xlExcel4IntlMacroSheet = 4
$xlExcel4MacroSheet = 3
$xlWorksheet = -4167
$xlSheetHidden = 0
$xlSheetVeryHidden = 2
$xlSheetVisible = -1
$xlSizeIsArea = 1
$xlSizeIsWidth = 2
$xlSlicer = 1
$xlTimeline = 2
$xlSlicerCrossFilterHideButtonsWithNoData = 4
$xlSlicerCrossFilterShowItemsWithDataAtTop = 2
$xlSlicerCrossFilterShowItemsWithNoData = 3
$xlSlicerNoCrossFilter = 1
$xlSlicerSortAscending = 2
$xlSlicerSortDataSourceOrder = 1
$xlSlicerSortDescending = 3
$xlSortNormal = 0
$xlSortTextAsNumbers = 1
$xlPinYin = 1
$xlStroke = 2
$xlCodePage = 2
$xlSyllabary = 1
$SortOnCellColor = 1
$SortOnFontColor = 2
$SortOnIcon = 3
$SortOnValues = 0
$xlAscending = 1
$xlDescending = 2
$xlManual = -4135
$xlSortColumns = 1
$xlSortRows = 2
$xlSortLabels = 2
$xlSortValues = 1
$xlSourceAutoFilter = 3
$xlSourceChart = 5
$xlSourcePivotTable = 6
$xlSourcePrintArea = 2
$xlSourceQuery = 7
$xlSourceRange = 4
$xlSourceSheet = 1
$xlSourceWorkbook = 0
$xlSpanishTuteoAndVoseo = 1
$xlSpanishTuteoOnly = 0
$xlSpanishVoseoOnly = 2
$xlSparkScaleCustom = 3
$xlSparkScaleGroup = 1
$xlSparkScaleSingle = 2
$xlSparkColumn = 2
$xlSparkColumnStacked100 = 3
$xlSparkLine = 1
$xlSparklineColumnsSquare = 2
$xlSparklineNonSquare = 0
$xlSparklineRowsSquare = 1
$xlSpeakByColumns = 1
$xlSpeakByRows = 0
$xlErrors = 16
$xlLogical = 4
$xlNumbers = 1
$xlTextValues = 2
$ColorScaleBlackWhite = 3
$ColorScaleGYR = 2
$ColorScaleRYG = 1
$ColorScaleWhiteBlack = 4
$xlSubscribeToPicture = -4147
$xlSubscribeToText = -4158
$xlAtBottom = 2
$xlAtTop = 1
$xlSummaryOnLeft = -4131
$xlSummaryOnRight = -4152
$xlStandardSummary = 1
$xlSummaryPivotTable = -4148
$xlSummaryAbove = 0
$xlSummaryBelow = 1
$xlTabPositionFirst = 0
$xlTabPositionLast = 1
$xlBlankRow = 19
$xlColumnStripe1 = 7
$xlColumnStripe2 = 8
$xlColumnSubheading1 = 20
$xlColumnSubheading2 = 21
$xlColumnSubheading3 = 22
$xlFirstColumn = 3
$xlFirstHeaderCell = 9
$xlFirstTotalCell = 11
$xlGrandTotalColumn = 4
$xlGrandTotalRow = 2
$xlHeaderRow = 1
$xlLastColumn = 4
$xlLastHeaderCell = 10
$xlLastTotalCell = 12
$xlPageFieldLabels = 26
$xlPageFieldValues = 27
$xlRowStripe1 = 5
$xlRowStripe2 = 6
$xlRowSubheading1 = 23
$xlRowSubheading2 = 24
$xlRowSubheading3 = 25
$xlSlicerHoveredSelectedItemWithData = 33
$xlSlicerHoveredSelectedItemWithNoData = 35
$xlSlicerHoveredUnselectedItemWithData = 32
$xlSlicerHoveredUnselectedItemWithNoData = 34
$xlSlicerSelectedItemWithData = 30
$xlSlicerSelectedItemWithNoData = 31
$xlSlicerUnselectedItemWithData = 28
$xlSlicerUnselectedItemWithNoData = 29
$xlSubtotalColumn1 = 13
$xlSubtotalColumn2 = 14
$xlSubtotalColumn3 = 15
$xlSubtotalRow1 = 16
$xlDelimited = 1
$xlFixedWidth = 2
$xlTextQualifierDoubleQuote = 1
$xlTextQualifierNone = -4142
$xlTextQualifierSingleQuote = 2
$xlTextVisualLTR = 1
$xlTextVisualRTL = 2
$xlThemeColorAccent1 = 5
$xlThemeColorAccent2 = 6
$xlThemeColorAccent3 = 7
$xlThemeColorAccent4 = 8
$xlThemeColorAccent5 = 9
$xlThemeColorAccent6 = 10
$xlThemeColorDark1 = 1
$xlThemeColorDark2 = 3
$xlThemeColorFollowedHyperlink = 12
$xlThemeColorHyperlink = 11
$xlThemeColorLight1 = 2
$xlThemeColorLight2 = 4
$xlThemeFontMajor = 2
$xlThemeFontMinor = 1
$xlThemeFontNone = 0
$xlThreadModeAutomatic = 0
$xlThreadModeManual = 1
$xlTickLabelOrientationAutomatic = -4105
$xlTickLabelOrientationDownward = -4170
$xlTickLabelOrientationHorizontal = -4128
$xlTickLabelOrientationUpward = -4171
$xlTickLabelOrientationVertical = -4166
$xlTickLabelPositionHigh = -4127
$xlTickLabelPositionLow = -4134
$xlTickLabelPositionNextToAxis = 4
$xlTickLabelPositionNone = -4142
$xlTickMarkCross = 4
$xlTickMarkInside = 2
$xlTickMarkNone = -4142
$xlTickMarkOutside = 3
$xlLast7Days = 2
$xlLastMonth = 5
$xlLastWeek = 4
$xlNextMonth = 8
$xlNextWeek = 7
$xlThisMonth = 9
$xlThisWeek = 3
$xlToday = 0
$xlTomorrow = 6
$xlYesterday = 1
$xlDays = 0
$xlMonths = 1
$xlYears = 2
$xlTimelineLevelYears = 0
$xlTimelineLevelQuarters = 1
$xlTimelineLevelMonths = 2
$xlTimelineLevelDays = 3
$xlNoButtonChanges = 1
$xlNoChanges = 4
$xlNoDockingChanges = 3
$xlNoShapeChanges = 2
$xlToolbarProtectionNone = -4143
$xlTop10Bottom = 0
$xlTop10Top = 1
$xlTotalsCalculationAverage = 2
$xlTotalsCalculationCount = 3
$xlTotalsCalculationCountNums = 4
$xlTotalsCalculationCustom = 9
$xlTotalsCalculationMax = 6
$xlTotalsCalculationMin = 5
$xlTotalsCalculationNone = 0
$xlTotalsCalculationStdDev = 7
$xlTotalsCalculationSum = 1
$xlTotalsCalculationVar = 8
$xlExponential = 5
$xlLinear = -4132
$xlLogarithmic = -4133
$xlMovingAvg = 6
$xlPolynomial = 3
$xlPower = 4
$xlUnderlineStyleDouble = -4119
$xlUnderlineStyleDoubleAccounting = 5
$xlUnderlineStyleNone = -4142
$xlUnderlineStyleSingle = 2
$xlUnderlineStyleSingleAccounting = 4
$xlUpdateLinksAlways = 3
$xlUpdateLinksNever = 2
$xlUpdateLinksUserSetting = 1
$xlVAlignBottom = -4107
$xlVAlignCenter = -4108
$xlVAlignDistributed = -4117
$xlVAlignJustify = -4130
$xlVAlignTop = -4160
$xlWBATChart = -4109
$xlWBATExcel4IntlMacroSheet = 4
$xlWBATExcel4MacroSheet = 3
$xlWBATWorksheet = -4167
$xlWebFormattingAll = 1
$xlWebFormattingNone = 3
$xlWebFormattingRTF = 2
$xlAllTables = 2
$xlEntirePage = 1
$xlSpecifiedTables = 3
$xlMaximized = -4137
$xlMinimized = -4140
$xlNormal = -4143
$xlChartAsWindow = 5
$xlChartInPlace = 4
$xlClipboard = 3
$xlInfo = -4129
$xlWorkbook = 1
$xlNormalView = 1
$xlPageBreakPreview = 2
$xlPageLayoutView = 3
$xlCommand = 2
$xlFunction = 1
$xlNotXLM = 3
$xlXmlExportSuccess = 0
$xlXmlExportValidationFailed = 1
$xlXmlImportElementsTruncated = 1
$xlXmlImportSuccess = 0
$xlXmlImportValidationFailed = 2
$xlXmlLoadImportToList = 2
$xlXmlLoadMapXml = 3
$xlXmlLoadOpenXml = 1
$xlXmlLoadPromptUser = 0
$xlGuess = 0
$xlNo = 2
$xlYes = 1

#Access 2019
$acAggregateAverage = 2
$acAggregateCount = 6
$acAggregateDistinct = 5
$acAggregateMaximum = 4
$acAggregateMinimum = 3
$acAggregateNone = 0
$acAggregateSum = 1
$acAxisRangeAuto = 0
$acAxisRangedFixed = 1
$acAxisUnitsBillions = 9
$acAxisUnitsHundredBillions = 11
$acAxisUnitsHundredMillions = 8
$acAxisUnitsHundreds = 2
$acAxisUnitsHundredThousands = 5
$acAxisUnitsMillions = 6
$acAxisUnitsNone = 0
$acAxisUnitsPercentage = 1
$acAxisUnitsTenBillions = 10
$acAxisUnitsTenMillions = 7
$acAxisUnitsTenThousands = 4
$acAxisUnitsThousands = 3
$acAxisUnitsTrillions = 12
$acBrowseToForm = 2
$acBrowseToReport = 3
$acChartBarClustered = 3
$acChartBarStacked = 4
$acChartBarStacked100 = 5
$acChartColumnClustered = 0
$acChartColumnStacked = 1
$acChartColumnStacked100 = 2
$acChartCombo = 10
$acChartLine = 6
$acChartLineStacked = 7
$acChartLineStacked100 = 8
$acChartPie = 9
$acSaveNo = 2
$acSavePrompt = 0
$acSaveYes = 1
$acColorIndexAqua = 14
$acColorIndexBlack = 0
$acColorIndexBlue = 12
$acColorIndexBrightGreen = 10
$acColorIndexDarkBlue = 4
$acColorIndexFuchsia = 13
$acColorIndexGray = 7
$acColorIndexGreen = 2
$acColorIndexMaroon = 1
$acColorIndexOlive = 3
$acColorIndexRed = 9
$acColorIndexSilver = 8
$acColorIndexTeal = 6
$acColorIndexViolet = 5
$acColorIndexWhite = 15
$acColorIndexYellow = 11
$acCmdAboutMicrosoftAccess = 35
$acCmdAddDataMacroAfterDelete = 720
$acCmdAddDataMacroAfterInsert = 718
$acCmdAddDataMacroAfterUpdate = 719
$acCmdAddDataMacroValidateChange = 722
$acCmdAddDataMacroValidateDelete = 721
$acCmdAddFromOutlook = 583
$acCmdAddInManager = 526
$acCmdAddNamedDataMacro = 723
$acCmdAddToNewGroup = 494
$acCmdAddWatch = 201
$acCmdAdvancedFilterSort = 99
$acCmdAlignBottom = 46
$acCmdAlignCenter = 477
$acCmdAlignLeft = 43
$acCmdAlignmentAndSizing = 478
$acCmdAlignMiddle = 476
$acCmdAlignRight = 44
$acCmdAlignToGrid = 47
$acCmdAlignTop = 45
$acCmdAlignToShortest = 153
$acCmdAlignToTallest = 154
$acCmdAnalyzePerformance = 283
$acCmdAnalyzeTable = 284
$acCmdAnchorBottomLeft = 616
$acCmdAnchorBottomRight = 618
$acCmdAnchorBottomStretchAcross = 617
$acCmdAnchorStretchAcross = 611
$acCmdAnchorStretchDown = 613
$acCmdAnchorStretchDownAcross = 614
$acCmdAnchorStretchDownRight = 615
$acCmdAnchorTopLeft = 610
$acCmdAnchorTopRight = 612
$acCmdAnswerWizard = 235
$acAttachment = 126
$acBoundObjectFrame = 108
$acCheckBox = 106
$acComboBox = 111
$acCommandButton = 104
$acCustomControl = 119
$acEmptyCell = 127
$acImage = 103
$acLabel = 100
$acLine = 102
$acListBox = 110
$acNavigationButton = 130
$acNavigationControl = 129
$acObjectFrame = 114
$acOptionButton = 105
$acOptionGroup = 107
$acPage = 124
$acPageBreak = 118
$acRectangle = 101
$acSubForm = 112
$acTabCtl = 123
$acTextBox = 109
$acToggleButton = 122
$acWebBrowser = 128
$acCurViewDatasheet = 2
$acCurViewDesign = 0
$acCurViewFormBrowse = 1
$acCurViewLayout = 7
$acCurViewPivotChart = 4
$acCurViewPivotTable = 3
$acCurViewPreview = 5
$acCurViewReportBrowse = 6
$acCursorOnHoverDefault = 0
$acCursorOnHoverHyperlinkHand = 1
$acDashTypeDash = 1
$acDashTypeDashDot = 3
$acDashTypeDot = 2
$acDashTypeSolid = 0
$acActiveDataObject = -1
$acDataForm = 2
$acDataFunction = 10
$acDataQuery = 1
$acDataReport = 3
$acDataServerView = 7
$acDataStoredProcedure = 9
$acDataTable = 0
$acExport = 1
$acImport = 0
$acLink = 2
$acDateGroupDay = 4
$acDateGroupMonth = 3
$acDateGroupNone = 0
$acDateGroupQuarter = 2
$acDateGroupYear = 1
$acDefViewPreview = 0
$acDefViewReportBrowse = 1
$acDefViewContinuous = 1
$acDefViewDatasheet = 2
$acDefViewPivotChart = 4
$acDefViewPivotTable = 3
$acDefViewSingle = 0
$acDefViewSplitForm = 5
$acDisplayAsIcon = 1
$acDisplayAsImageIcon = 0
$acDisplayAsPaperclip = 2
$acDisplayAsHyperlinkAlways = 1
$acDisplayAsHyperlinkIfHlink = 0
$acDisplayAsHyperlinkOnScreenOnly = 2
$acExportQualityPrint = 0
$acExportQualityScreen = 1
$acUTF16 = 1
$acUTF8 = 0
$acExportForm = 2
$acExportFunction = 10
$acExportQuery = 1
$acExportReport = 3
$acExportServerView = 7
$acExportStoredProcedure = 9
$acExportTable = 0
$acEmbedSchema = 1
$acExcludePrimaryKeyAndIndexes = 2
$acExportAllTableAndFieldProperties = 32
$acLiveReportSource = 8
$acPersistReportML = 16
$acRunFromServer = 4
$acSchemaNone = 0
$acSchemaXSD = 1
$acFileFormatAccess12 = 12
$acFileFormatAccess2 = 2
$acFileFormatAccess2000 = 9
$acFileFormatAccess2002 = 10
$acFileFormatAccess95 = 7
$acFileFormatAccess97 = 8
$acFilterNormal = 0
$acServerFilter = 1
$acAll = 0
$acCurrent = -1
$acAnywhere = 0
$acEntire = 1
$acStart = 2
$acAutomatic = 0
$acNumber = 1
$acPercent = 2
$acBetween = 0
$acEqual = 2
$acGreaterThan = 4
$acGreaterThanOrEqual = 6
$acLessThan = 5
$acLessThanOrEqual = 7
$acNotBetween = 1
$acNotEqual = 3
$acDataBar = 3
$acExpression = 1
$acFieldHasFocus = 2
$acFieldValue = 0
$acFormAdd = 0
$acFormEdit = 1
$acFormPropertySettings = -1
$acFormReadOnly = 2
$acDesign = 1
$acFormDS = 3
$acFormPivotChart = 5
$acFormPivotTable = 4
$acLayout = 6
$acNormal = 0
$acPreview = 2
$acHorizontalAnchorBoth = 2
$acHorizontalAnchorLeft = 0
$acHorizontalAnchorRight = 1
$acAddress = 2
$acDisplayedValue = 0
$acDisplayText = 1
$acFullAddress = 5
$acScreenTip = 4
$acSubAddress = 3
$acImeModeAlpha = 8
$acImeModeAlphaFull = 7
$acImeModeDisable = 3
$acImeModeHangul = 10
$acImeModeHangulFull = 9
$acImeModeHiragana = 4
$acImeModeKatakana = 5
$acImeModeKatakanaHalf = 6
$acImeModeNoControl = 0
$acImeModeOff = 2
$acImeModeOn = 1
$acAppendData = 2
$acStructureAndData = 1
$acStructureOnly = 0
$acLayoutNone = 0
$acLayoutStacked = 2
$acLayoutTabular = 1
$acLegendPositionBottom = 3
$acLegendPositionLeft = 0
$acLegendPositionRight = 2
$acLegendPositionTop = 1
$acMarkerAsterisk = 4
$acMarkerCircle = 8
$acMarkerDiamond = 2
$acMarkerLongDash = 7
$acMarkerNone = 0
$acMarkerPlus = 9
$acMarkerShortDash = 6
$acMarkerSquare = 1
$acMarkerTriangle = 3
$acMarkerX = 4
$acDoNotPlot = 1
$acPlotAsInterpolated = 2
$acPlotAsZero = 0
$acClassModule = 1
$acStandardModule = 0
$acHorizontal = 0
$acVertical = 1
$acNewDatabaseFormatAccess12 = 12
$acNewDatabaseFormatAccess2000 = 9
$acNewDatabaseFormatAccess2002 = 10
$acNewDatabaseFormatUserDefault = 0
$acDatabaseProperties = 11
$acDefault = -1
$acDiagram = 8
$acForm = 2
$acFunction = 10
$acMacro = 4
$acModule = 5
$acQuery = 1
$acReport = 3
$acServerView = 7
$acStoredProcedure = 9
$acTable = 0
$acTableDataMacro = 12
$acAdd = 0
$acEdit = 1
$acReadOnly = 2
$acOutputForm = 2
$acOutputFunction = 10
$acOutputModule = 5
$acOutputQuery = 1
$acOutputReport = 3
$acOutputServerView = 7
$acOutputStoredProcedure = 9
$acOutputTable = 0
$acBottom = 3
$acGeneral = 1
$acLeft = 4
$acNoPictureCaption = 0
$acRight = 5
$acTop = 2
$acPRCMColor = 2
$acPRCMMonochrome = 1
$acPRDPHorizontal = 2
$acPRDPSimplex = 1
$acPRDPVertical = 3
$acPRHorizontalColumnLayout = 1953
$acPRVerticalColumnLayout = 1954
$acPRPQDraft = -1
$acPRPQHigh = -4
$acPRPQLow = -2
$acPRPQMedium = -3
$acPRORLandscape = 2
$acPRORPortrait = 1
$acPRBNAuto = 7
$acPRBNCassette = 14
$acPRBNEnvelope = 5
$acPRBNEnvManual = 6
$acPRBNFormSource = 15
$acPRBNLargeCapacity = 11
$acPRBNLargeFmt = 10
$acPRBNLower = 2
$acPRBNManual = 4
$acPRBNMiddle = 3
$acPRBNSmallFmt = 9
$acPRBNTractor = 8
$acPRBNUpper = 1
$acPRPS10x14 = 16
$acPRPS11x17 = 17
$acPRPSA3 = 8
$acPRPSA4 = 9
$acPRPSA4Small = 10
$acPRPSA5 = 11
$acPRPSB4 = 12
$acPRPSB5 = 13
$acPRPSCSheet = 24
$acPRPSDSheet = 25
$acPRPSEnv10 = 20
$acPRPSEnv11 = 21
$acPRPSEnv12 = 22
$acPRPSEnv14 = 23
$acPRPSEnv9 = 19
$acPRPSEnvB4 = 33
$acPRPSEnvB5 = 34
$acPRPSEnvB6 = 35
$acPRPSEnvC3 = 29
$acPRPSEnvC4 = 30
$acPRPSEnvC5 = 28
$acPRPSEnvC6 = 31
$acPRPSEnvC65 = 32
$acPRPSEnvDL = 27
$acPRPSEnvItaly = 36
$acPRPSEnvMonarch = 37
$acPRPSEnvPersonal = 38
$acPRPSESheet = 26
$acPRPSExecutive = 7
$acPRPSFanfoldLglGerman = 41
$acPRPSFanfoldStdGerman = 40
$acPRPSFanfoldUS = 39
$acPRPSFolio = 14
$acPRPSLedger = 4
$acDraft = 3
$acHigh = 0
$acLow = 2
$acMedium = 1
$acPages = 2
$acPrintAll = 0
$acSelection = 1
$acADP = 1
$acMDB = 2
$acNull = 0
$acPropertyBackColor = 8
$acPropertyCaption = 9
$acPropertyEnabled = 0
$acPropertyForeColor = 7
$acPropertyHeight = 6
$acPropertyLeft = 3
$acPropertyLocked = 2
$acPropertyTop = 4
$acPropertyValue = 10
$acPropertyVisible = 1
$acPropertyWidth = 5
$acQuitPrompt = 0
$acQuitSaveAll = 1
$acQuitSaveNone = 2
$acFirst = 2
$acGoTo = 4
$acLast = 3
$acNewRec = 5
$acNext = 1
$acPrevious = 0
$acResourceImage = 1
$acResourceTheme = 0
$acDown = 1
$acSearchAll = 2
$acUp = 0
$acDetail = 0
$acFooter = 2
$acGroupLevel1Footer = 6
$acGroupLevel1Header = 5
$acGroupLevel2Footer = 8
$acGroupLevel2Header = 7
$acHeader = 1
$acPageFooter = 4
$acPageHeader = 3
$acSendForm = 2
$acSendModule = 5
$acSendNoObject = -1
$acSendQuery = 1
$acSendReport = 3
$acSendTable = 0
$acSeparatorCharactersComma = 3
$acSeparatorCharactersNewLine = 1
$acSeparatorCharactersSemiColon = 2
$acSeparatorCharactersSystemSeparator = 0
$acImportSharePointList = 0
$acLinkSharePointList = 1
$acToolbarNo = 2
$acToolbarWhereApprop = 1
$acToolbarYes = 0
$acDatasheetAllowEdits = 0
$acDatasheetReadOnly = 1
$acDatasheetOnBottom = 1
$acDatasheetOnLeft = 2
$acDatasheetOnRight = 3
$acDatasheetOnTop = 0
$acFormOnly = 0
$acGridOnly = 1
$acSpreadsheetTypeExcel3 = 0
$acSpreadsheetTypeExcel4 = 6
$acSpreadsheetTypeExcel5 = 5
$acSpreadsheetTypeExcel7 = 5
$acSpreadsheetTypeExcel8 = 8
$acSpreadsheetTypeExcel9 = 8
$acSpreadsheetTypeExcel12 = 9
$acSpreadsheetTypeExcel12Xml = 10
$acSysCmdAccessDir = 9
$acSysCmdAccessVer = 7
$acSysCmdClearHelpTopic = 11
$acSysCmdClearStatus = 5
$acSysCmdGetObjectState = 10
$acSysCmdGetWorkgroupFile = 13
$acSysCmdIniFile = 8
$acSysCmdInitMeter = 1
$acSysCmdProfile = 12
$acSysCmdRemoveMeter = 3
$acSysCmdRuntime = 6
$acSysCmdSetStatus = 4
$acSysCmdUpdateMeter = 2
$acTextFormatHTMLRichText = 1
$acTextFormatPlain = 0
$acExportDelim = 2
$acExportFixed = 3
$acExportHTML = 8
$acExportMerge = 4
$acImportDelim = 0
$acImportFixed = 1
$acImportHTML = 7
$acLinkDelim = 5
$acLinkFixed = 6
$acLinkHTML = 9
$acDisableScript = 2
$acEnableScript = 0
$acPromptScript = 1
$acTrendlineExponential = 2
$acTrendlineLinear = 1
$acTrendlineLogarithmic = 3
$acTrendlineMovingAverage = 6
$acTrendlineNone = 0
$acTrendlinePolynomial = 4
$acTrendlinePower = 5
$acPrimaryAxis = 0
$acSecondaryAxis = 1
$acVerticalAnchorBoth = 2
$acVerticalAnchorBottom = 1
$acVerticalAnchorTop = 0
$acViewDesign = 1
$acViewLayout = 6
$acViewNormal = 0
$acViewPivotChart = 4
$acViewPivotTable = 3
$acViewPreview = 2
$acViewReport = 5
$acScrollAuto = 0
$acScrollNo = 2
$acScrollYes = 1
$acComplete = 3
$acInteractive = 3
$acLoaded = 2
$acLoading = 1
$acUninitialized = 0
$acWebUserEmail = 3
$acWebUserID = 0
$acWebUserLoginName = 2
$acWebUserName = 1
$acWebUserGroupID = 0
$acWebUserGroupName = 1
$acDialog = 3
$acHidden = 1
$acIcon = 2
$acWindowNormal = 0
$acCmdApplyAutoFormat1 = 648
$acCmdApplyAutoFormat10 = 657
$acCmdApplyAutoFormat11 = 658
$acCmdApplyAutoFormat12 = 659
$acCmdApplyAutoFormat13 = 660
$acCmdApplyAutoFormat14 = 661
$acCmdApplyAutoFormat15 = 662
$acCmdApplyAutoFormat16 = 663
$acCmdApplyAutoFormat17 = 664
$acCmdApplyAutoFormat18 = 665
$acCmdApplyAutoFormat19 = 666
$acCmdApplyAutoFormat2 = 649
$acCmdApplyAutoFormat20 = 667
$acCmdApplyAutoFormat21 = 668
$acCmdApplyAutoFormat22 = 669
$acCmdApplyAutoFormat23 = 670
$acCmdApplyAutoFormat24 = 671
$acCmdApplyAutoFormat25 = 672
$acCmdApplyAutoFormat3 = 650
$acCmdApplyAutoFormat4 = 651
$acCmdApplyAutoFormat5 = 652
$acCmdApplyAutoFormat6 = 653
$acCmdApplyAutoFormat7 = 654
$acCmdApplyAutoFormat8 = 655
$acCmdApplyAutoFormat9 = 656
$acCmdApplyDefault = 55
$acCmdApplyFilterSort = 93
$acCmdAppMaximize = 10
$acCmdAppMinimize = 11
$acCmdAppMove = 12
$acCmdAppRestore = 9
$acCmdAppSize = 13
$acCmdArrangeIconsAuto = 218
$acCmdArrangeIconsByCreated = 216
$acCmdArrangeIconsByModified = 217
$acCmdArrangeIconsByName = 214
$acCmdArrangeIconsByType = 215
$acCmdAutoCorrect = 261
$acCmdAutoDial = 192
$acCmdAutoFormat = 270
$acCmdBackgroundPicture = 474
$acCmdBackgroundSound = 475
$acCmdBackup = 513
$acCmdBookmarksClearAll = 310
$acCmdBookmarksNext = 308
$acCmdBookmarksPrevious = 309
$acCmdBookmarksToggle = 307
$acCmdBringToFront = 52
$acCmdBrowseSharePointList = 621
$acCmdCalculatedColumn = 698
$acCmdCallStack = 172
$acCmdChangeToCheckBox = 231
$acCmdChangeToComboBox = 230
$acCmdChangeToCommandButton = 501
$acCmdChangeToImage = 234
$acCmdChangeToLabel = 228
$acCmdChangeToListBox = 229
$acCmdChangeToOptionButton = 233
$acCmdChangeToTextBox = 227
$acCmdChangeToToggleButton = 232
$acCmdClearAll = 146
$acCmdClearAllBreakpoints = 132
$acCmdClearGrid = 71
$acCmdClearHyperlink = 343
$acCmdClearItemDefaults = 237
$acCmdClose = 58
$acCmdCloseAll = 646
$acCmdCloseDatabase = 538
$acCmdCloseWindow = 186
$acCmdCollectDataViaEmail = 608
$acCmdColumnWidth = 117
$acCmdCompactDatabase = 4
$acCmdCompatCheckCurrentObject = 696
$acCmdCompatCheckDatabase = 695
$acCmdCompileAllModules = 125
$acCmdCompileAndSaveAllModules = 126
$acCmdCompileLoadedModules = 290
$acCmdCompleteWord = 306
$acCmdConditionalFormatting = 500
$acCmdConnection = 383
$acCmdControlMarginsMedium = 630
$acCmdControlMarginsNarrow = 629
$acCmdControlMarginsNone = 628
$acCmdControlMarginsWide = 631
$acCmdControlPaddingMedium = 634
$acCmdControlPaddingNarrow = 633
$acCmdControlPaddingNone = 632
$acCmdControlPaddingWide = 635
$acCmdControlWizardsToggle = 197
$acCmdConvertDatabase = 171
$acCmdConvertLinkedTableToLocal = 700
$acCmdConvertMacrosToVisualBasic = 279
$acCmdCopy = 190
$acCmdCopyDatabaseFile = 516
$acCmdCopyHyperlink = 328
$acCmdCreateMenuFromMacro = 334
$acCmdCreateRelationship = 150
$acCmdCreateReplica = 263
$acCmdCreateShortcut = 219
$acCmdCreateShortcutMenuFromMacro = 336
$acCmdCreateToolbarFromMacro = 335
$acCmdCut = 189
$acCmdDatabaseProperties = 256
$acCmdDatabaseSplitter = 520
$acCmdDataEntry = 78
$acCmdDataOutline = 468
$acCmdDatasheetView = 282
$acCmdDateAndTime = 226
$acCmdDebugWindow = 123
$acCmdDelete = 337
$acCmdDeleteGroup = 493
$acCmdDeletePage = 332
$acCmdDeleteQueryColumn = 81
$acCmdDeleteRecord = 223
$acCmdDeleteRows = 188
$acCmdDeleteSharePointList = 627
$acCmdDeleteTab = 255
$acCmdDeleteTable = 489
$acCmdDeleteTableColumn = 271
$acCmdDeleteWatch = 267
$acCmdDesignObject = 697
$acCmdDesignView = 183
$acCmdDiagramAddRelatedTables = 373
$acCmdDiagramAutosizeSelectedTables = 378
$acCmdDiagramDeleteRelationship = 382
$acCmdDiagramLayoutDiagram = 380
$acCmdDiagramLayoutSelection = 379
$acCmdDiagramModifyUserDefinedView = 375
$acCmdDiagramNewLabel = 372
$acCmdDiagramNewTable = 381
$acCmdDiagramRecalculatePageBreaks = 377
$acCmdDiagramShowRelationshipLabels = 374
$acCmdDiagramViewPageBreaks = 376
$acCmdDiscardChanges = 639
$acCmdDiscardChangesAndRefresh = 640
$acCmdDocMaximize = 15
$acCmdDocMinimize = 60
$acCmdDocMove = 16
$acCmdDocRestore = 14
$acCmdDocSize = 17
$acCmdDocumenter = 285
$acCmdDropSQLDatabase = 517
$acCmdDuplicate = 34
$acCmdEditHyperlink = 325
$acCmdEditingAllowed = 70
$acCmdEditListItems = 607
$acCmdEditRelationship = 151
$acCmdEditTriggers = 384
$acCmdEditWatch = 202
$acCmdEncryptDecryptDatabase = 5
$acCmdEnd = 198
$acCmdExit = 3
$acCmdExportAccess = 559
$acCmdExportdBase = 565
$acCmdExportExcel = 556
$acCmdExportFixedFormat = 592
$acCmdExportHTML = 564
$acCmdExportODBC = 562
$acCmdExportRTF = 558
$acCmdExportSharePointList = 557
$acCmdExportSnapShot = 563
$acCmdExportText = 560
$acCmdExportXML = 561
$acCmdFavoritesAddTo = 299
$acCmdFavoritesOpen = 298
$acCmdFieldList = 42
$acCmdFilterByForm = 207
$acCmdFilterBySelection = 208
$acCmdFilterExcludingSelection = 277
$acCmdFilterMenu = 619
$acCmdFind = 30
$acCmdFindNext = 341
$acCmdFindNextWordUnderCursor = 313
$acCmdFindPrevious = 120
$acCmdFindPrevWordUnderCursor = 312
$acCmdFitToWindow = 245
$acCmdFont = 19
$acCmdFormatCells = 77
$acCmdFormHdrFtr = 36
$acCmdFormView = 281
$acCmdFreezeColumn = 105
$acCmdGoBack = 294
$acCmdGoContinue = 127
$acCmdGoForward = 295
$acCmdGroupByTable = 387
$acCmdGroupControls = 484
$acCmdHideColumns = 79
$acCmdHideMessageBar = 677
$acCmdHidePane = 365
$acCmdHideTable = 147
$acCmdHorizontalSpacingDecrease = 158
$acCmdHorizontalSpacingIncrease = 159
$acCmdHorizontalSpacingMakeEqual = 157
$acCmdHyperlinkDisplayText = 329
$acCmdImportAttachAccess = 544
$acCmdImportAttachdBase = 552
$acCmdImportAttachExcel = 545
$acCmdImportAttachHTML = 550
$acCmdImportAttachODBC = 549
$acCmdImportAttachOutlook = 551
$acCmdImportAttachSharePointList = 547
$acCmdImportAttachText = 546
$acCmdImportAttachXML = 548
$acCmdIndent = 205
$acCmdIndexes = 152
$acCmdInsertActiveXControl = 258
$acCmdInsertChart = 293
$acCmdInsertFile = 39
$acCmdInsertFileIntoModule = 118
$acCmdInsertHyperlink = 259
$acCmdInsertLogo = 585
$acCmdInsertLookupColumn = 273
$acCmdInsertLookupField = 291
$acCmdInsertMovieFromFile = 469
$acCmdInsertNavigationButton = 724
$acCmdInsertObject = 33
$acCmdInsertPage = 331
$acCmdInsertPicture = 222
$acCmdInsertPivotTable = 470
$acCmdInsertProcedure = 262
$acCmdInsertQueryColumn = 82
$acCmdInsertRows = 187
$acCmdInsertSpreadsheet = 471
$acCmdInsertSubdatasheet = 499
$acCmdInsertTableColumn = 272
$acCmdInsertTitle = 586
$acCmdInsertUnboundSection = 472
$acCmdInvokeBuilder = 178
$acCmdJoinProperties = 72
$acCmdLastPosition = 339
$acCmdLayoutGridlinesBoth = 574
$acCmdLayoutGridlinesBottom = 580
$acCmdLayoutGridlinesCrossHatch = 578
$acCmdLayoutGridlinesHorizontal = 576
$acCmdLayoutGridlinesNone = 577
$acCmdLayoutGridlinesOutline = 581
$acCmdLayoutGridlinesTop = 579
$acCmdLayoutGridlinesVertical = 575
$acCmdLayoutInsertColumnLeft = 680
$acCmdLayoutInsertColumnRight = 681
$acCmdLayoutInsertRowAbove = 678
$acCmdLayoutInsertRowBelow = 679
$acCmdLayoutMergeCells = 682
$acCmdLayoutPreview = 141
$acCmdLayoutSplitColumnCell = 683
$acCmdLayoutSplitRowCell = 684
$acCmdLayoutView = 593
$acCmdLineUpIcons = 213
$acCmdLinkedTableManager = 519
$acCmdLinkTables = 102
$acCmdListConstants = 303
$acCmdLoadFromQuery = 95
$acCmdMacroAllActions = 589
$acCmdMakeMDEFile = 7
$acCmdManageAttachments = 673
$acCmdManageReplies = 609
$acCmdManageTableEvents = 717
$acCmdMaximiumRecords = 508
$acCmdMicrosoftAccessHelpTopics = 100
$acCmdMicrosoftOnTheWeb = 236
$acCmdModifySharePointList = 622
$acCmdModifySharePointListAlerts = 623
$acCmdModifySharePointListPermissions = 625
$acCmdModifySharePointListWorkflow = 624
$acCmdMoreWindows = 8
$acCmdMoveColumnCellDown = 573
$acCmdMoveColumnCellUp = 572
$acCmdNewDatabase = 26
$acCmdNewGroup = 491
$acCmdNewObjectAutoForm = 193
$acCmdNewObjectAutoFormWeb = 705
$acCmdNewObjectAutoReport = 194
$acCmdNewObjectAutoReportWeb = 706
$acCmdNewObjectBlankForm = 600
$acCmdNewObjectBlankFormWeb = 703
$acCmdNewObjectBlankReport = 602
$acCmdNewObjectBlankReportWeb = 704
$acCmdNewObjectClassModule = 140
$acCmdNewObjectContinuousForm = 594
$acCmdNewObjectContinuousFormWeb = 701
$acCmdNewObjectDatasheetForm = 598
$acCmdNewObjectDatasheetFormWeb = 702
$acCmdNewObjectDesignForm = 604
$acCmdNewObjectDesignQuery = 603
$acCmdNewObjectDesignReport = 605
$acCmdNewObjectDesignTable = 606
$acCmdNewObjectDiagram = 352
$acCmdNewObjectForm = 136
$acCmdNewObjectFunction = 394
$acCmdNewObjectLabelsReport = 601
$acCmdNewObjectMacro = 138
$acCmdNewObjectMacroWeb = 708
$acCmdNewObjectModalForm = 599
$acCmdNewObjectModule = 139
$acCmdNewObjectNavigationLeft = 690
$acCmdNewObjectNavigationLeftWeb = 710
$acCmdNewObjectNavigationRight = 691
$acCmdNewObjectNavigationRightWeb = 711
$acCmdNewObjectNavigationTop = 689
$acCmdNewObjectNavigationTopLeft = 693
$acCmdNewObjectNavigationTopLeftWeb = 713
$acCmdNewObjectNavigationTopRight = 694
$acCmdNewObjectNavigationTopRightWeb = 714
$acCmdNewObjectNavigationTopTop = 692
$acCmdNewObjectNavigationTopTopWeb = 712
$acCmdNewObjectNavigationTopWeb = 709
$acCmdNewObjectPivotChart = 596
$acCmdNewObjectPivotTable = 597
$acCmdNewObjectQuery = 135
$acCmdNewObjectQueryWeb = 707
$acCmdNewObjectReport = 137
$acCmdNewObjectSplitForm = 595
$acCmdNewObjectStoredProcedure = 351
$acCmdNewObjectTable = 134
$acCmdNewObjectView = 350
$acCmdObjBrwFindWholeWordOnly = 314
$acCmdObjBrwGroupMembers = 318
$acCmdObjBrwHelp = 316
$acCmdObjBrwShowHiddenMembers = 315
$acCmdObjBrwViewDefinition = 317
$acCmdObjectBrowser = 200
$acCmdOfficeClipboard = 488
$acCmdOLEDDELinks = 27
$acCmdOLEObjectConvert = 167
$acCmdOLEObjectDefaultVerb = 57
$acCmdOpenDatabase = 25
$acCmdOpenHyperlink = 326
$acCmdOpenNewHyperlink = 327
$acCmdOpenSearchPage = 253
$acCmdOpenStartPage = 252
$acCmdOpenTable = 221
$acCmdOpenURL = 251
$acCmdOptions = 49
$acCmdOutdent = 206
$acCmdOutputToExcel = 175
$acCmdOutputToRTF = 176
$acCmdOutputToText = 177
$acCmdPageHdrFtr = 182
$acCmdPageNumber = 225
$acCmdPageProperties = 467
$acCmdPageSetup = 32
$acCmdParameterInfo = 305
$acCmdPartialReplicaWizard = 524
$acCmdPaste = 191
$acCmdPasteAppend = 38
$acCmdPasteAsHyperlink = 490
$acCmdPasteFormatting = 587
$acCmdPasteSpecial = 64
$acCmdPivotAutoAverage = 416
$acCmdPivotAutoCount = 413
$acCmdPivotAutoFilter = 398
$acCmdPivotAutoMax = 415
$acCmdPivotAutoMin = 414
$acCmdPivotAutoStdDev = 417
$acCmdPivotAutoStdDevP = 419
$acCmdPivotAutoSum = 412
$acCmdPivotAutoVar = 418
$acCmdPivotAutoVarP = 420
$acCmdPivotChartByRowByColumn = 456
$acCmdPivotChartDrillInto = 457
$acCmdPivotChartDrillOut = 532
$acCmdPivotChartMultiplePlots = 458
$acCmdPivotChartMultiplePlotsUnifiedScale = 459
$acCmdPivotChartShowLegend = 455
$acCmdPivotChartSortAscByTotal = 534
$acCmdPivotChartSortDescByTotal = 535
$acCmdPivotChartType = 453
$acCmdPivotChartUndo = 460
$acCmdPivotChartView = 397
$acCmdPivotCollapse = 400
$acCmdPivotDelete = 454
$acCmdPivotDropAreas = 452
$acCmdPivotExpand = 401
$acCmdPivotRefresh = 404
$acCmdPivotShowAll = 461
$acCmdPivotShowBottom1 = 432
$acCmdPivotShowBottom10 = 435
$acCmdPivotShowBottom10Percent = 440
$acCmdPivotShowBottom1Percent = 437
$acCmdPivotShowBottom2 = 433
$acCmdPivotShowBottom25 = 436
$acCmdPivotShowBottom25Percent = 441
$acCmdPivotShowBottom2Percent = 438
$acCmdPivotShowBottom5 = 434
$acCmdPivotShowBottom5Percent = 439
$acCmdPivotShowBottomOther = 442
$acCmdPivotShowTop1 = 421
$acCmdPivotShowTop10 = 424
$acCmdPivotShowTop10Percent = 429
$acCmdPivotShowTop1Percent = 426
$acCmdPivotShowTop2 = 422
$acCmdPivotShowTop25 = 425
$acCmdPivotShowTop25Percent = 430
$acCmdPivotShowTop2Percent = 427
$acCmdPivotShowTop5 = 423
$acCmdPivotShowTop5Percent = 428
$acCmdPivotShowTopOther = 431
$acCmdPivotTableClearCustomOrdering = 527
$acCmdPivotTableCreateCalcField = 444
$acCmdPivotTableCreateCalcTotal = 443
$acCmdPivotTableDemote = 411
$acCmdPivotTableExpandIndicators = 451
$acCmdPivotTableExportToExcel = 405
$acCmdPivotTableFilterBySelection = 528
$acCmdPivotTableGroupItems = 530
$acCmdPivotTableHideDetails = 402
$acCmdPivotTableMoveToColumnArea = 407
$acCmdPivotTableMoveToDetailArea = 409
$acCmdPivotTableMoveToFilterArea = 408
$acCmdPivotTableMoveToRowArea = 406
$acCmdPivotTablePercentColumnTotal = 447
$acCmdPivotTablePercentGrandTotal = 450
$acCmdPivotTablePercentParentColumnItem = 449
$acCmdPivotTablePercentParentRowItem = 448
$acCmdPivotTablePercentRowTotal = 446
$acCmdPivotTablePromote = 410
$acCmdPivotTableRemove = 529
$acCmdPivotTableShowAsNormal = 445
$acCmdPivotTableShowDetails = 403
$acCmdPivotTableSubtotal = 399
$acCmdPivotTableUngroupItems = 531
$acCmdPivotTableView = 396
$acCmdPrepareDatabaseForWeb = 716
$acCmdPreviewEightPages = 249
$acCmdPreviewFourPages = 248
$acCmdPreviewOnePage = 246
$acCmdPreviewTwelvePages = 250
$acCmdPreviewTwoPages = 247
$acCmdPrimaryKey = 107
$acCmdPrint = 340
$acCmdPrintPreview = 54
$acCmdPrintRelationships = 483
$acCmdPrintSelection = 590
$acCmdProcedureDefinition = 122
$acCmdProperties = 287
$acCmdPublishDatabase = 537
$acCmdPublishDefaults = 324
$acCmdPublishFixedFormat = 591
$acCmdQueryAddToOutput = 362
$acCmdQueryGroupBy = 361
$acCmdQueryParameters = 76
$acCmdQueryTotals = 73
$acCmdQueryTypeAppend = 91
$acCmdQueryTypeCrosstab = 74
$acCmdQueryTypeDelete = 92
$acCmdQueryTypeMakeTable = 94
$acCmdQueryTypeSelect = 89
$acCmdQueryTypeSQLDataDefinition = 168
$acCmdQueryTypeSQLPassThrough = 169
$acCmdQueryTypeSQLUnion = 180
$acCmdQueryTypeUpdate = 90
$acCmdQuickInfo = 304
$acCmdQuickPrint = 278
$acCmdQuickWatch = 203
$acCmdRecordsGoToFirst = 67
$acCmdRecordsGoToLast = 68
$acCmdRecordsGoToNew = 28
$acCmdRecordsGoToNext = 65
$acCmdRecordsGoToPrevious = 66
$acCmdRecoverDesignMaster = 265
$acCmdRedo = 199
$acCmdReferences = 260
$acCmdRefresh = 18
$acCmdRefreshData = 541
$acCmdRefreshPage = 297
$acCmdRefreshSharePointList = 626
$acCmdRegisterActiveXControls = 254
$acCmdRelationships = 133
$acCmdRemove = 366
$acCmdRemoveAllFilters = 644
$acCmdRemoveAllSorts = 645
$acCmdRemoveFilterFromCurrentColumn = 643
$acCmdRemoveFilterSort = 144
$acCmdRemoveFromLayout = 582
$acCmdRemoveTable = 84
$acCmdRename = 143
$acCmdRenameColumn = 274
$acCmdRenameGroup = 492
$acCmdRepairDatabase = 6
$acCmdReplace = 29
$acCmdReportHdrFtr = 37
$acCmdReportView = 539
$acCmdReset = 124
$acCmdResolveConflicts = 266
$acCmdRestore = 514
$acCmdRowHeight = 116
$acCmdRun = 181
$acCmdRunMacro = 31
$acCmdRunOpenMacro = 338
$acCmdSave = 20
$acCmdSaveAllModules = 280
$acCmdSaveAs = 21
$acCmdSaveAsHTML = 321
$acCmdSaveAsOutlookContact = 584
$acCmdSaveAsQuery = 96
$acCmdSaveAsReport = 142
$acCmdSaveAsTemplate = 686
$acCmdSaveDatabaseAsNewTemplatePart = 687
$acCmdSavedExports = 555
$acCmdSavedImports = 543
$acCmdSaveLayout = 145
$acCmdSaveModuleAsText = 119
$acCmdSaveRecord = 97
$acCmdSaveSelectionAsNewDataType = 688
$acCmdSelectAll = 333
$acCmdSelectAllRecords = 109
$acCmdSelectEntireColumn = 571
$acCmdSelectEntireLayout = 715
$acCmdSelectEntireRow = 570
$acCmdSelectForm = 40
$acCmdSelectRecord = 50
$acCmdSelectReport = 319
$acCmdSend = 173
$acCmdSendToBack = 53
$acCmdServerFilterByForm = 507
$acCmdServerProperties = 496
$acCmdSetCaption = 637
$acCmdSetControlDefaults = 56
$acCmdSetDatabasePassword = 275
$acCmdSetNextStatement = 129
$acCmdShareOnSharePoint = 542
$acCmdSharePointSiteRecycleBin = 641
$acCmdShowAllRelationships = 149
$acCmdShowColumnHistory = 620
$acCmdShowDatePicker = 636
$acCmdShowDirectRelationships = 148
$acCmdShowEnvelope = 533
$acCmdShowLogicCatalog = 685
$acCmdShowMembers = 302
$acCmdShowMessageBar = 676
$acCmdShowNextStatement = 130
$acCmdShowTable = 185
$acCmdSingleStep = 88
$acCmdSizeToFit = 59
$acCmdSizeToFitForm = 69
$acCmdSizeToGrid = 48
$acCmdSizeToNarrowest = 155
$acCmdSizeToWidest = 156
$acCmdSnapToGrid = 62
$acCmdSortAscending = 163
$acCmdSortDescending = 164
$acCmdSortingAndGrouping = 51
$acCmdSpeech = 511
$acCmdSpelling = 269
$acCmdSQLView = 184
$acCmdStackedLayout = 568
$acCmdStartNewWorkflow = 675
$acCmdStartupProperties = 224
$acCmdStepInto = 342
$acCmdStepOut = 311
$acCmdStepOver = 128
$acCmdStepToCursor = 204
$acCmdSubdatasheetCollapseAll = 505
$acCmdSubdatasheetExpandAll = 504
$acCmdSubdatasheetRemove = 506
$acCmdSubformDatasheet = 108
$acCmdSubformDatasheetView = 463
$acCmdSubformFormView = 462
$acCmdSubformInNewWindow = 495
$acCmdSubformPivotChartView = 465
$acCmdSubformPivotTableView = 464
$acCmdSwitchboardManager = 521
$acCmdSynchronize = 638
$acCmdSynchronizeNow = 264
$acCmdSyncWebApplication = 699
$acCmdTabControlPageOrder = 330
$acCmdTableAddTable = 498
$acCmdTableCustomView = 497
$acCmdTableNames = 75
$acCmdTabOrder = 41
$acCmdTabularLayout = 569
$acCmdTestValidationRules = 196
$acCmdTileHorizontally = 286
$acCmdTileVertically = 23
$acCmdToggleBreakpoint = 131
$acCmdToggleCacheListData = 642
$acCmdToggleFilter = 220
$acCmdToggleOffline = 540
$acCmdToolbarControlProperties = 301
$acCmdToolbarsCustomize = 165
$acCmdTransferSQLDatabase = 515
$acCmdTransparentBackground = 288
$acCmdTransparentBorder = 289
$acCmdUndo = 292
$acCmdUnfreezeAllColumns = 106
$acCmdUngroupControls = 485
$acCmdUnhideColumns = 80
$acCmdUpsizingWizard = 522
$acCmdUserAndGroupAccounts = 104
$acCmdUserAndGroupPermissions = 103
$acCmdUserLevelSecurityWizard = 276
$acCmdVerticalSpacingDecrease = 161
$acCmdVerticalSpacingIncrease = 162
$acCmdVerticalSpacingMakeEqual = 160
$acCmdViewCode = 170
$acCmdViewDetails = 210
$acCmdViewDiagrams = 354
$acCmdViewFieldList = 353
$acCmdViewForms = 112
$acCmdViewFunctions = 395
$acCmdViewGrid = 63
$acCmdViewLargeIcons = 209
$acCmdViewList = 212
$acCmdViewMacros = 114
$acCmdViewModules = 115
$acCmdViewObjectDependencies = 536
$acCmdViewQueries = 111
$acCmdViewReports = 113
$acCmdViewRuler = 61
$acCmdViewShowPaneDiagram = 358
$acCmdViewShowPaneGrid = 359
$acCmdViewShowPaneSQL = 357
$acCmdViewSmallIcons = 211
$acCmdViewStoredProcedures = 355
$acCmdViewTableColumnNames = 363
$acCmdViewTableColumnProperties = 368
$acCmdViewTableKeys = 369
$acCmdViewTableNameOnly = 364
$acCmdViewTables = 110
$acCmdViewTableUserView = 370
$acCmdViewToolbox = 85
$acCmdViewVerifySQL = 360
$acCmdViewViews = 356
$acCmdVisualBasicEditor = 525
$acCmdWindowArrangeIcons = 24
$acCmdWindowCascade = 22
$acCmdWindowHide = 2
$acCmdWindowSplit = 121
$acCmdWindowUnhide = 1
$acCmdWordMailMerge = 195
$acCmdWorkflowTasks = 674
$acCmdWorkgroupAdministrator = 391
$acCmdZoom10 = 244
$acCmdZoom100 = 240
$acCmdZoom1000 = 482
$acCmdZoom150 = 239
$acCmdZoom200 = 238
$acCmdZoom25 = 243
$acCmdZoom50 = 242
$acCmdZoom500 = 481
$acCmdZoom75 = 241
$acCmdZoomBox = 179
$acCmdZoomSelection = 371
# Microsoft Office
$BackstageGroupStyleError = 2
$BackstageGroupStyleNormal = 0
$BackstageGroupStyleWarning = 1
$certdetAvailable = 0
$certdetExpirationDate = 3
$certdetIssuer = 2
$certdetSubject = 1
$certdetThumbprint = 4
$certverresError = 0
$certverresExpired = 5
$certverresInvalid = 4
$certverresRevoked = 6
$certverresUntrusted = 7
$certverresUnverified = 2
$certverresValid = 3
$certverresVerifying = 1
$contverresError = 0
$contverresModified = 4
$contverresUnverified = 2
$contverresValid = 3
$contverresVerifying = 1
$cipherModeECB = 0
$cipherModeCBC = 1
$encprovdetURL = 0
$encprovdetAlgorithm = 1
$encprovdetBlockCipher = 2
$encprovdetCipherBlockSize = 3
$encprovdetCipherMode = 4
$mfHTML = 2
$mfPlainText = 1
$mfRTF = 3
$msoAlertCancelDefault = -1
$msoAlertCancelFifth = 4
$msoAlertCancelFirst = 0
$msoAlertCancelFourth = 3
$msoAlertCancelSecond = 1
$msoAlertCancelThird = 2
$msoAlertIconCritical = 1
$msoAlertIconInfo = 4
$msoAlertIconNoIcon = 0
$msoAlertIconQuery = 2
$msoAlertIconWarning = 3
$msoAlignBottoms = 5
$msoAlignCenters = 1
$msoAlignLefts = 0
$msoAlignMiddles = 4
$msoAlignRights = 2
$msoAlignTops = 3
$msoLanguageIDExeMode = 4
$msoLanguageIDHelp = 3
$msoLanguageIDInstall = 1
$msoLanguageIDUI = 2
$msoLanguageIDUIPrevious = 5
$msoArrowheadLengthMedium = 2
$msoArrowheadLengthMixed = -2
$msoArrowheadLong = 3
$msoArrowheadShort = 1
$msoArrowheadDiamond = 5
$msoArrowheadNone = 1
$msoArrowheadOpen = 3
$msoArrowheadOval = 6
$msoArrowheadStealth = 4
$msoArrowheadStyleMixed = -2
$msoArrowheadTriangle = 2
$msoArrowheadNarrow = 1
$msoArrowheadWide = 3
$msoArrowheadWidthMedium = 2
$msoArrowheadWidthMixed = -2
$msoAutomationSecurityByUI = 2
$msoAutomationSecurityForceDisable = 3
$msoAutomationSecurityLow = 1
$msoShape10pointStar = 149
$msoShape12pointStar = 150
$msoShape16pointStar = 94
$msoShape24pointStar = 95
$msoShape32pointStar = 96
$msoShape4pointStar = 91
$msoShape5pointStar = 92
$msoShape6pointStar = 147
$msoShape7pointStar = 148
$msoShape8pointStar = 93
$msoShapeActionButtonBackorPrevious = 129
$msoShapeActionButtonBeginning = 131
$msoShapeActionButtonCustom = 125
$msoShapeActionButtonDocument = 134
$msoShapeActionButtonEnd = 132
$msoShapeActionButtonForwardorNext = 130
$msoShapeActionButtonHelp = 127
$msoShapeActionButtonHome = 126
$msoShapeActionButtonInformation = 128
$msoShapeActionButtonMovie = 136
$msoShapeActionButtonReturn = 133
$msoShapeActionButtonSound = 135
$msoShapeArc = 25
$msoShapeBalloon = 137
$msoShapeBentArrow = 41
$msoShapeBentUpArrow = 44
$msoShapeBevel = 15
$msoShapeBlockArc = 20
$msoShapeCan = 13
$msoShapeChartPlus = 182
$msoShapeChartStar = 181
$msoShapeChartX = 180
$msoShapeChevron = 52
$msoShapeChord = 161
$msoAutoSizeMixed = -2
$msoAutoSizeNone = 0
$msoAutoSizeShapeToFitText = 1
$msoAutoSizeTextToFitShape = 2
$msoBackgroundStyle1 = 1
$msoBackgroundStyle10 = 10
$msoBackgroundStyle11 = 11
$msoBackgroundStyle12 = 12
$msoBackgroundStyle2 = 2
$msoBackgroundStyle3 = 3
$msoBackgroundStyle4 = 4
$msoBackgroundStyle5 = 5
$msoBackgroundStyle6 = 6
$msoBackgroundStyle7 = 7
$msoBackgroundStyle8 = 8
$msoBackgroundStyle9 = 9
$msoBackgroundStyleMixed = -2
$msoBackgroundStyleNone = 0
$msoBarBottom = 3
$msoBarFloating = 4
$msoBarLeft = 0
$msoBarMenuBar = 6
$msoBarPopup = 5
$msoBarRight = 2
$msoBarTop = 1
$msoBarNoChangeDock = 16
$msoBarNoChangeVisible = 8
$msoBarNoCustomize = 1
$msoBarNoHorizontalDock = 64
$msoBarNoMove = 4
$msoBarNoProtection = 0
$msoBarNoResize = 2
$msoBarNoVerticalDock = 32
$msoBarRowFirst = 0
$msoBarRowLast = -1
$msoBarTypeMenuBar = 1
$msoBarTypeNormal = 0
$msoBarTypePopup = 2
$msoBaselineAlignAuto = 5
$msoBaselineAlignBaseline = 1
$msoBaselineAlignCenter = 3
$msoBaselineAlignFarEast50 = 4
$msoBaselineAlignMixed = -2
$msoBaselineAlignTop = 2
$msoBevelAngle = 6
$msoBevelArtDeco = 13
$msoBevelCircle = 3
$msoBevelConvex = 8
$msoBevelCoolSlant = 9
$msoBevelCross = 5
$msoBevelDivot = 10
$msoBevelHardEdge = 12
$msoBevelNone = 1
$msoBevelRelaxedInset = 2
$msoBevelRiblet = 11
$msoBevelSlope = 4
$msoBevelSoftRound = 7
$msoBevelTypeMixed = -2
$msoBlackWhiteAutomatic = 1
$msoBlackWhiteBlack = 8
$msoBlackWhiteBlackTextAndLine = 6
$msoBlackWhiteDontShow = 10
$msoBlackWhiteGrayOutline = 5
$msoBlackWhiteGrayScale = 2
$msoBlackWhiteHighContrast = 7
$msoBlackWhiteInverseGrayScale = 4
$msoBlackWhiteLightGrayScale = 3
$msoBlackWhiteMixed = -2
$msoBlackWhiteWhite = 9
$msoBlogMultipleCategories = 2
$msoBlogNoCategories = 0
$msoBlogOneCategory = 1
$msoBlogImageTypeGIF = 2
$msoBlogImageTypeJPEG = 1
$msoBlogImageTypePNG = 3
$BroadcastCapFileSizeLimited = 1
$BroadcastCapSupportsMeetingNotes = 2
$BroadcastCapSupportsUpdateDoc = 4
$BroadcastPaused = 2
$BroadcastStarted = 1
$NoBroadcast = 0
$msoBulletMixed = -2
$msoBulletNone = 0
$msoBulletNumbered = 2
$msoBulletPicture = 3
$msoBulletUnnumbered = 1
$msoButtonDown = -1
$msoButtonMixed = 2
$msoButtonUp = 0
$msoButtonAutomatic = 0
$msoButtonCaption = 2
$msoButtonIcon = 1
$msoButtonIconAndCaption = 3
$msoButtonIconAndCaptionBelow = 11
$msoButtonIconAndWrapCaption = 7
$msoButtonIconAndWrapCaptionBelow = 15
$msoButtonWrapCaption = 14
$msoCalloutAngle30 = 2
$msoCalloutAngle45 = 3
$msoCalloutAngle60 = 4
$msoCalloutAngle90 = 5
$msoCalloutAngleAutomatic = 1
$msoCalloutAngleMixed = -2
$msoCalloutDropBottom = 4
$msoCalloutDropCenter = 3
$msoCalloutDropCustom = 1
$msoCalloutDropMixed = -2
$msoCalloutDropTop = 2
$msoCalloutFour = 4
$msoCalloutMixed = -2
$msoCalloutOne = 1
$msoCalloutThree = 3
$msoCalloutTwo = 2
$msoCharacterSetArabic = 1
$msoCharacterSetCyrillic = 2
$msoCharacterSetEnglishWesternEuropeanOtherLatinScript = 3
$msoCharacterSetGreek = 4
$msoCharacterSetHebrew = 5
$msoCharacterSetJapanese = 6
$msoCharacterSetKorean = 7
$msoCharacterSetMultilingualUnicode = 8
$msoCharacterSetSimplifiedChinese = 9
$msoCharacterSetThai = 10
$msoCharacterSetTraditionalChinese = 11
$msoCharacterSetVietnamese = 12
$msoElementChartFloorNone = 1200
$msoElementChartFloorShow = 1201
$msoElementChartTitleAboveChart = 2
$msoElementChartTitleCenteredOverlay = 1
$msoElementChartTitleNone = 0
$msoElementChartWallNone = 1100
$msoElementChartWallShow = 1101
$msoElementDataLabelBestFit = 210
$msoElementDataLabelBottom = 209
$msoElementDataLabelCallout = 211
$msoElementDataLabelCenter = 202
$msoElementDataLabelInsideBase = 204
$msoElementDataLabelInsideEnd = 203
$msoElementDataLabelLeft = 206
$msoElementDataLabelNone = 200
$msoElementDataLabelOutSideEnd = 205
$msoElementDataLabelRight = 207
$msoElementDataLabelShow = 201
$msoElementDataLabelTop = 208
$msoElementDataTableNone = 500
$msoElementDataTableShow = 501
$msoElementDataTableWithLegendKeys = 502
$msoElementErrorBarNone = 700
$msoElementErrorBarPercentage = 702
$msoElementErrorBarStandardDeviation = 703
$msoElementErrorBarStandardError = 701
$msoElementLegendBottom = 104
$msoElementLegendLeft = 103
$msoElementLegendLeftOverlay = 106
$msoElementLegendNone = 100
$msoElementLegendRight = 101
$msoElementLegendRightOverlay = 105
$msoElementLegendTop = 102
$msoElementLineDropHiLoLine = 804
$msoChartFieldBubbleSize = 1
$msoChartFieldCategoryName = 2
$msoChartFieldFormula = 6
$msoChartFieldPercentage = 3
$msoChartFieldSeriesName = 4
$msoChartFieldValue = 5
$msoChartFieldRange = 7
$msoClipboardFormatHTML = 2
$msoClipboardFormatMixed = -2
$msoClipboardFormatNative = 1
$msoClipboardFormatPlainText = 4
$msoClipboardFormatRTF = 3
$msoColorTypeCMS = 4
$msoColorTypeCMYK = 3
$msoColorTypeInk = 5
$msoColorTypeMixed = -2
$msoColorTypeRGB = 1
$msoColorTypeScheme = 2
$msoComboLabel = 1
$msoComboNormal = 0
$msoCommandBarButtonHyperlinkInsertPicture = 2
$msoCommandBarButtonHyperlinkNone = 0
$msoCommandBarButtonHyperlinkOpen = 1
$msoConnectorCurve = 3
$msoConnectorElbow = 2
$msoConnectorStraight = 1
$msoConnectorTypeMixed = -2
$msoContactCardAddressTypeUnknown = 0
$msoContactCardAddressTypeOutlook = 1
$msoContactCardAddressTypeSMTP = 2
$msoContactCardAddressTypeIM = 1
$msoContactCardFull = 1
$msoContactCardHover = 0
$msoContactCardTypeEnterpriseContact = 0
$msoContactCardTypePersonalContact = 1
$msoContactCardTypeUnknownContact = 2
$msoContactCardTypeEnterpriseGroup = 3
$msoContactCardTypePersonalDistributionList = 4
$msoControlOLEUsageBoth = 3
$msoControlOLEUsageClient = 2
$msoControlOLEUsageNeither = 0
$msoControlOLEUsageServer = 1
$msoControlActiveX = 22
$msoControlAutoCompleteCombo = 26
$msoControlButton = 1
$msoControlButtonDropdown = 5
$msoControlButtonPopup = 12
$msoControlComboBox = 4
$msoControlCustom = 0
$msoControlDropdown = 3
$msoControlEdit = 2
$msoControlExpandingGrid = 16
$msoControlGauge = 19
$msoControlGenericDropdown = 8
$msoControlGraphicCombo = 20
$msoControlGraphicDropdown = 9
$msoControlGraphicPopup = 11
$msoControlGrid = 18
$msoControlLabel = 15
$msoControlLabelEx = 24
$msoControlOCXDropdown = 7
$msoControlPane = 21
$msoControlPopup = 10
$msoControlSpinner = 23
$msoControlSplitButtonMRUPopup = 14
$msoControlSplitButtonPopup = 13
$msoControlSplitDropdown = 6
$msoControlSplitExpandingGrid = 17
$msoControlWorkPane = 25
$msoCTPDockPositionBottom = 3
$msoCTPDockPositionFloating = 4
$msoCTPDockPositionLeft = 0
$msoCTPDockPositionRight = 2
$msoCTPDockPositionTop = 1
$msoCTPDockPositionRestrictNoChange = 1
$msoCTPDockPositionRestrictNoHorizontal = 2
$msoCTPDockPositionRestrictNone = 0
$msoCTPDockPositionRestrictNoVertical = 3
$msoCustomXMLNodeAttribute = 2
$msoCustomXMLNodeCData = 4
$msoCustomXMLNodeComment = 8
$msoCustomXMLNodeDocument = 9
$msoCustomXMLNodeElement = 1
$msoCustomXMLNodeProcessingInstruction = 7
$msoCustomXMLNodeText = 3
$msoCustomXMLValidationErrorAutomaticallyCleared = 1
$msoCustomXMLValidationErrorManual = 2
$msoCustomXMLValidationErrorSchemaGenerated = 0
$msoDateTimeddddMMMMddyyyy = 2
$msoDateTimedMMMMyyyy = 3
$msoDateTimedMMMyy = 5
$msoDateTimeFigureOut = 14
$msoDateTimeFormatMixed = -2
$msoDateTimeHmm = 10
$msoDateTimehmmAMPM = 12
$msoDateTimeHmmss = 11
$msoDateTimehmmssAMPM = 13
$msoDateTimeMdyy = 1
$msoDateTimeMMddyyHmm = 8
$msoDateTimeMMddyyhmmAMPM = 9
$msoDateTimeMMMMdyyyy = 4
$msoDateTimeMMMMyy = 6
$msoDateTimeMMyy = 7
$msoDistributeHorizontally = 0
$msoDistributeVertically = 1
$msoDocInspectorStatusDocOk = 0
$msoDocInspectorStatusError = 2
$msoDocInspectorStatusIssueFound = 1
$msoPropertyTypeBoolean = 2
$msoPropertyTypeDate = 3
$msoPropertyTypeFloat = 5
$msoPropertyTypeNumber = 1
$msoPropertyTypeString = 4
$msoEditingAuto = 0
$msoEditingCorner = 1
$msoEditingSmooth = 2
$msoEditingSymmetric = 3
$msoEncodingArabic = 1256
$msoEncodingArabicASMO = 708
$msoEncodingArabicAutoDetect = 51256
$msoEncodingArabicTransparentASMO = 720
$msoEncodingAutoDetect = 50001
$msoEncodingBaltic = 1257
$msoEncodingCentralEuropean = 1250
$msoEncodingCyrillic = 1251
$msoEncodingCyrillicAutoDetect = 51251
$msoEncodingEBCDICArabic = 20420
$msoEncodingEBCDICDenmarkNorway = 20277
$msoEncodingEBCDICFinlandSweden = 20278
$msoEncodingEBCDICFrance = 20297
$msoEncodingEBCDICGermany = 20273
$msoEncodingEBCDICGreek = 20423
$msoEncodingEBCDICGreekModern = 875
$msoEncodingEBCDICHebrew = 20424
$msoEncodingEBCDICIcelandic = 20871
$msoEncodingEBCDICInternational = 500
$msoEncodingEBCDICItaly = 20280
$msoEncodingEBCDICJapaneseKatakanaExtended = 20290
$msoEncodingEBCDICJapaneseKatakanaExtendedAndJapanese = 50930
$msoEncodingEBCDICJapaneseLatinExtendedAndJapanese = 50939
$msoEncodingEBCDICKoreanExtended = 20833
$msoEncodingEBCDICKoreanExtendedAndKorean = 50933
$msoEncodingEBCDICLatinAmericaSpain = 20284
$msoEncodingEBCDICMultilingualROECELatin2 = 870
$msoEncodingEBCDICRussian = 20880
$msoEncodingEBCDICSerbianBulgarian = 21025
$msoEncodingEBCDICSimplifiedChineseExtendedAndSimplifiedChinese = 50935
$msoEncodingEBCDICThai = 20838
$msoEncodingEBCDICTurkish = 20905
$msoEncodingEBCDICTurkishLatin5 = 1026
$msoEncodingEBCDICUnitedKingdom = 20285
$msoMethodGet = 0
$msoMethodPost = 1
$msoExtrusionColorAutomatic = 1
$msoExtrusionColorCustom = 2
$msoExtrusionColorTypeMixed = -2
$msoFarEastLineBreakLanguageJapanese = 1041
$msoFarEastLineBreakLanguageKorean = 1042
$msoFarEastLineBreakLanguageSimplifiedChinese = 2052
$msoFarEastLineBreakLanguageTraditionalChinese = 1028
$msoFeatureInstallNone = 0
$msoFeatureInstallOnDemand = 1
$msoFeatureInstallOnDemandWithUI = 2
$msoFileDialogFilePicker = 3
$msoFileDialogFolderPicker = 4
$msoFileDialogOpen = 1
$msoFileDialogSaveAs = 2
$msoFileDialogViewDetails = 2
$msoFileDialogViewLargeIcons = 6
$msoFileDialogViewList = 1
$msoFileDialogViewPreview = 4
$msoFileDialogViewProperties = 3
$msoFileDialogViewSmallIcons = 7
$msoFileDialogViewThumbnail = 5
$msoFileDialogViewTiles = 9
$msoFileDialogViewWebView = 8
$msoCreateNewFile = 1
$msoEditFile = 0
$msoOpenFile = 2
$msoBottomSection = 4
$msoNew = 1
$msoNewfromExistingFile = 2
$msoNewfromTemplate = 3
$msoOpenDocument = 0
$msoFileValidationDefault = 0
$msoFileValidationSkip = 1
$msoFillBackground = 5
$msoFillGradient = 3
$msoFillMixed = -2
$msoFillPatterned = 2
$msoFillPicture = 6
$msoFillSolid = 1
$msoFillTextured = 4
$msoFilterComparisonContains = 8
$msoFilterComparisonEqual = 0
$msoFilterComparisonGreaterThan = 3
$msoFilterComparisonGreaterThanEqual = 5
$msoFilterComparisonIsBlank = 6
$msoFilterComparisonIsNotBlank = 7
$msoFilterComparisonLessThan = 2
$msoFilterComparisonLessThanEqual = 4
$msoFilterComparisonNotContains = 9
$msoFilterComparisonNotEqual = 1
$msoFilterConjunctionAnd = 0
$msoFilterConjunctionOr = 1
$msoFlipHorizontal = 0
$msoFlipVertical = 1
$msoThemeComplexScript = 2
$msoThemeEastAsian = 3
$msoThemeLatin = 1
$msoGradientColorMixed = -2
$msoGradientOneColor = 1
$msoGradientPresetColors = 3
$msoGradientTwoColors = 2
$msoGradientDiagonalDown = 4
$msoGradientDiagonalUp = 3
$msoGradientFromCenter = 7
$msoGradientFromCorner = 5
$msoGradientFromTitle = 6
$msoGradientHorizontal = 1
$msoGradientMixed = -2
$msoGradientVertical = 2
$msoGraphicStylePreset1 = 1
$msoGraphicStylePreset10 = 10
$msoGraphicStylePreset11 = 11
$msoGraphicStylePreset12 = 12
$msoGraphicStylePreset13 = 13
$msoGraphicStylePreset14 = 14
$msoGraphicStylePreset15 = 15
$msoGraphicStylePreset16 = 16
$msoGraphicStylePreset17 = 17
$msoGraphicStylePreset18 = 18
$msoGraphicStylePreset19 = 19
$msoGraphicStylePreset2 = 2
$msoGraphicStylePreset20 = 20
$msoGraphicStylePreset21 = 21
$msoGraphicStylePreset22 = 22
$msoGraphicStylePreset23 = 23
$msoGraphicStylePreset24 = 24
$msoGraphicStylePreset25 = 25
$msoGraphicStylePreset26 = 26
$msoGraphicStylePreset27 = 27
$msoGraphicStylePreset28 = 28
$msoGraphicStylePreset3 = 3
$msoGraphicStylePreset4 = 4
$msoGraphicStylePreset5 = 5
$msoGraphicStylePreset6 = 6
$msoGraphicStylePreset7 = 7
$msoGraphicStylePreset8 = 8
$msoGraphicStylePreset9 = 9
$msoGraphicStyleMixed = -2
$msoGraphicStyleNotAPreset = 0
$msoAnchorCenter = 2
$msoAnchorNone = 1
$msoHorizontalAnchorMixed = -2
$msoHyperlinkInlineShape = 2
$msoHyperlinkRange = 0
$msoHyperlinkShape = 1
$msoIodGroupPIAs = 0
$msoIodGroupVSTOR35Mgd = 1
$msoIodGroupVSTOR40Mgd = 2
$msoLanguageIDAfrikaans = 1078
$msoLanguageIDAlbanian = 1052
$msoLanguageIDAmharic = 1118
$msoLanguageIDArabic = 1025
$msoLanguageIDArabicAlgeria = 5121
$msoLanguageIDArabicBahrain = 15361
$msoLanguageIDArabicEgypt = 3073
$msoLanguageIDArabicIraq = 2049
$msoLanguageIDArabicJordan = 11265
$msoLanguageIDArabicKuwait = 13313
$msoLanguageIDArabicLebanon = 12289
$msoLanguageIDArabicLibya = 4097
$msoLanguageIDArabicMorocco = 6145
$msoLanguageIDArabicOman = 8193
$msoLanguageIDArabicQatar = 16385
$msoLanguageIDArabicSyria = 10241
$msoLanguageIDArabicTunisia = 7169
$msoLanguageIDArabicUAE = 14337
$msoLanguageIDArabicYemen = 9217
$msoLanguageIDArmenian = 1067
$msoLanguageIDAssamese = 1101
$msoLanguageIDAzeriCyrillic = 2092
$msoLanguageIDAzeriLatin = 1068
$msoLanguageIDBasque = 1069
$msoLanguageIDBelgianDutch = 2067
$msoLanguageIDBelgianFrench = 2060
$msoLanguageIDBengali = 1093
$msoLanguageIDBosnian = 4122
$msoLanguageIDBosnianBosniaHerzegovinaCyrillic = 8218
$msoLanguageIDBosnianBosniaHerzegovinaLatin = 5146
$msoLanguageIDBrazilianPortuguese = 1046
$msoLanguageIDBulgarian = 1026
$msoLanguageIDBurmese = 1109
$msoLanguageIDByelorussian = 1059
$msoLightRigBalanced = 14
$msoLightRigBrightRoom = 27
$msoLightRigChilly = 22
$msoLightRigContrasting = 18
$msoLightRigFlat = 24
$msoLightRigFlood = 17
$msoLightRigFreezing = 23
$msoLightRigGlow = 26
$msoLightRigHarsh = 16
$msoLightRigLegacyFlat1 = 1
$msoLightRigLegacyFlat2 = 2
$msoLightRigLegacyFlat3 = 3
$msoLightRigLegacyFlat4 = 4
$msoLightRigLegacyHarsh1 = 9
$msoLightRigLegacyHarsh2 = 10
$msoLightRigLegacyHarsh3 = 11
$msoLightRigLegacyHarsh4 = 12
$msoLightRigLegacyNormal1 = 5
$msoLightRigLegacyNormal2 = 6
$msoLightRigLegacyNormal3 = 7
$msoLightRigLegacyNormal4 = 8
$msoLightRigMixed = -2
$msoLightRigMorning = 19
$msoLightRigSoft = 15
$msoLightRigSunrise = 20
$msoLightRigSunset = 21
$msoLightRigThreePoint = 13
$msoLightRigTwoPoint = 25
$msoLineCapFlat = 3
$msoLineCapMixed = -2
$msoLineCapRound = 2
$msoLineCapSquare = 1
$msoLineDash = 4
$msoLineDashDot = 5
$msoLineDashDotDot = 6
$msoLineDashStyleMixed = -2
$msoLineLongDash = 7
$msoLineLongDashDot = 8
$msoLineRoundDot = 3
$msoLineSolid = 1
$msoLineSquareDot = 2
$msoLineFillBackground = 5
$msoLineFillGradient = 3
$msoLineFillMixed = -2
$msoLineFillNone = 0
$msoLineFillPatterned = 2
$msoLineFillPicture = 6
$msoLineFillSolid = 1
$msoLineFillTextured = 4
$msoLineJoinBevel = 2
$msoLineJoinMiter = 3
$msoLineJoinMixed = -2
$msoLineJoinRound = 1
$msoLineSingle = 1
$msoLineStyleMixed = -2
$msoLineThickBetweenThin = 5
$msoLineThickThin = 4
$msoLineThinThick = 3
$msoLineThinThin = 2
$msoMenuAnimationNone = 0
$msoMenuAnimationRandom = 1
$msoMenuAnimationSlide = 3
$msoMenuAnimationUnfold = 2
$msoMergeCombine = 2
$msoMergeFragment = 5
$msoMergeIntersect = 3
$msoMergeSubtract = 4
$msoMergeUnion = 1
$msoMetaPropertyTypeBoolean = 1
$msoMetaPropertyTypeCalculated = 3
$msoMetaPropertyTypeChoice = 2
$msoMetaPropertyTypeComputed = 4
$msoMetaPropertyTypeCurrency = 5
$msoMetaPropertyTypeDateTime = 6
$msoMetaPropertyTypeFillInChoice = 7
$msoMetaPropertyTypeGuid = 8
$msoMetaPropertyTypeInteger = 9
$msoMetaPropertyTypeLookup = 10
$msoMetaPropertyTypeMax = 19
$msoMetaPropertyTypeMultiChoice = 12
$msoMetaPropertyTypeMultiChoiceFillIn = 13
$msoMetaPropertyTypeMultiChoiceLookup = 11
$msoMetaPropertyTypeNote = 14
$msoMetaPropertyTypeNumber = 15
$msoMetaPropertyTypeText = 16
$msoMetaPropertyTypeUnknown = 0
$msoMetaPropertyTypeUrl = 17
$msoMetaPropertyTypeUser = 18
$msoIntegerMixed = 32768
$msoSingleMixed = -2147483648
$msoMoveRowFirst = -4
$msoMoveRowNbr = -1
$msoMoveRowNext = -2
$msoMoveRowPrev = -3
$msoBulletAlphaLCParenBoth = 8
$msoBulletAlphaLCParenRight = 9
$msoBulletAlphaLCPeriod = 0
$msoBulletAlphaUCParenBoth = 10
$msoBulletAlphaUCParenRight = 11
$msoBulletAlphaUCPeriod = 1
$msoBulletArabicAbjadDash = 24
$msoBulletArabicAlphaDash = 23
$msoBulletArabicDBPeriod = 29
$msoBulletArabicDBPlain = 28
$msoBulletArabicParenBoth = 12
$msoBulletArabicParenRight = 2
$msoBulletArabicPeriod = 3
$msoBulletArabicPlain = 13
$msoBulletCircleNumDBPlain = 18
$msoBulletCircleNumWDBlackPlain = 20
$msoBulletCircleNumWDWhitePlain = 19
$msoBulletHebrewAlphaDash = 25
$msoBulletHindiAlpha1Period = 40
$msoBulletHindiAlphaPeriod = 36
$msoBulletHindiNumParenRight = 39
$msoBulletHindiNumPeriod = 37
$msoBulletKanjiKoreanPeriod = 27
$msoBulletKanjiKoreanPlain = 26
$msoBulletKanjiSimpChinDBPeriod = 38
$msoBulletRomanLCParenBoth = 4
$msoBulletRomanLCParenRight = 5
$msoBulletRomanLCPeriod = 6
$msoBulletRomanUCParenBoth = 14
$msoBulletRomanUCParenRight = 15
$msoBulletRomanUCPeriod = 7
$msoBulletSimpChinPeriod = 17
$msoBulletSimpChinPlain = 16
$msoBulletStyleMixed = -2
$msoOLEMenuGroupContainer = 2
$msoOLEMenuGroupEdit = 1
$msoOLEMenuGroupFile = 0
$msoOLEMenuGroupHelp = 5
$msoOLEMenuGroupNone = -1
$msoOLEMenuGroupObject = 3
$msoOLEMenuGroupWindow = 4
$msoOrgChartLayoutBothHanging = 2
$msoOrgChartLayoutLeftHanging = 3
$msoOrgChartLayoutMixed = -2
$msoOrgChartLayoutRightHanging = 4
$msoOrgChartLayoutStandard = 1
$msoOrgChartOrientationMixed = -2
$msoOrgChartOrientationVertical = 1
$msoOrientationHorizontal = 1
$msoOrientationMixed = -2
$msoOrientationVertical = 2
$msoAlignCenter = 1
$msoAlignDistribute = 4
$msoAlignJustify = 3
$msoAlignJustifyLow = 6
$msoAlignLeft = 0
$msoAlignMixed = -2
$msoAlignRight = 2
$msoAlignThaiDistribute = 5
$msoPathType1 = 1
$msoPathType2 = 2
$msoPathType3 = 3
$msoPathType4 = 4
$msoPathType5 = 5
$msoPathType6 = 6
$msoPathType7 = 7
$msoPathType8 = 8
$msoPathType9 = 9
$msoPathTypeMixed = -2
$msoPathTypeNone = 0
$msoPattern10Percent = 2
$msoPattern20Percent = 3
$msoPattern25Percent = 4
$msoPattern30Percent = 5
$msoPattern40Percent = 6
$msoPattern50Percent = 7
$msoPattern5Percent = 1
$msoPattern60Percent = 8
$msoPattern70Percent = 9
$msoPattern75Percent = 10
$msoPattern80Percent = 11
$msoPattern90Percent = 12
$msoPatternCross = 51
$msoPatternDarkDownwardDiagonal = 15
$msoPatternDarkHorizontal = 13
$msoPatternDarkUpwardDiagonal = 16
$msoPatternDarkVertical = 14
$msoPatternDashedDownwardDiagonal = 28
$msoPatternDashedHorizontal = 32
$msoPatternDashedUpwardDiagonal = 27
$msoPatternDashedVertical = 31
$msoPatternDiagonalBrick = 40
$msoPatternDiagonalCross = 54
$msoPatternDivot = 46
$msoPatternDottedDiamond = 24
$msoPatternDottedGrid = 45
$msoPatternDownwardDiagonal = 52
$msoPatternHorizontal = 49
$msoPatternHorizontalBrick = 35
$msoPatternLargeCheckerBoard = 36
$msoPatternLargeConfetti = 33
$msoPatternLargeGrid = 34
$msoPatternLightDownwardDiagonal = 21
$msoPatternLightHorizontal = 19
$msoPermissionChange = 15
$msoPermissionEdit = 2
$msoPermissionExtract = 8
$msoPermissionFullControl = 64
$msoPermissionObjModel = 32
$msoPermissionPrint = 16
$msoPermissionRead = 1
$msoPermissionSave = 4
$msoPermissionView = 1
$msoPickerFieldUnknown = 0
$msoPickerFieldDateTime = 1
$msoPickerFieldNumber = 2
$msoPickerFieldText = 3
$msoPickerFieldUser = 4
$msoPickerFieldMax = 5
$msoPictureAutomatic = 1
$msoPictureBlackAndWhite = 3
$msoPictureGrayscale = 2
$msoPictureMixed = -2
$msoPictureWatermark = 4
$msoPictureCompressDocDefault = -1
$msoPictureCompressFalse = 0
$msoPictureCompressTrue = 1
$msoEffectBackgroundRemoval = 1
$msoEffectBlur = 2
$msoEffectBrightnessContrast = 3
$msoEffectCement = 4
$msoEffectChalkSketch = 5
$msoEffectColorTemperature = 6
$msoEffectCrisscrossEtching = 7
$msoEffectCutout = 8
$msoEffectFilmGrain = 9
$msoEffectGlass = 10
$msoEffectGlowDiffused = 11
$msoEffectGlowEdges = 12
$msoEffectLightScreen = 13
$msoEffectLineDrawing = 14
$msoEffectMarker = 15
$msoEffectMosaicBubbles = 16
$msoEffectNone = 17
$msoEffectPaintBrush = 18
$msoEffectPaintStrokes = 19
$msoEffectPastelsSmooth = 20
$msoEffectPencilGrayscale = 21
$msoEffectPencilSketch = 22
$msoEffectPhotocopy = 23
$msoEffectPlasticWrap = 24
$msoEffectSaturation = 25
$msoEffectSharpenSoften = 26
$msoEffectTexturizer = 27
$msoEffectWatercolorSponge = 28
$msoCameraIsometricBottomDown = 23
$msoCameraIsometricBottomUp = 22
$msoCameraIsometricLeftDown = 25
$msoCameraIsometricLeftUp = 24
$msoCameraIsometricOffAxis1Left = 28
$msoCameraIsometricOffAxis1Right = 29
$msoCameraIsometricOffAxis1Top = 30
$msoCameraIsometricOffAxis2Left = 31
$msoCameraIsometricOffAxis2Right = 32
$msoCameraIsometricOffAxis2Top = 33
$msoCameraIsometricOffAxis3Bottom = 36
$msoCameraIsometricOffAxis3Left = 34
$msoCameraIsometricOffAxis3Right = 35
$msoCameraIsometricOffAxis4Bottom = 39
$msoCameraIsometricOffAxis4Left = 37
$msoCameraIsometricOffAxis4Right = 38
$msoCameraIsometricRightDown = 27
$msoCameraIsometricRightUp = 26
$msoCameraIsometricTopDown = 21
$msoCameraIsometricTopUp = 20
$msoCameraLegacyObliqueBottom = 8
$msoCameraLegacyObliqueBottomLeft = 7
$msoCameraLegacyObliqueBottomRight = 9
$msoCameraLegacyObliqueFront = 5
$msoCameraLegacyObliqueLeft = 4
$msoCameraLegacyObliqueRight = 6
$msoCameraLegacyObliqueTop = 2
$msoCameraLegacyObliqueTopLeft = 1
$msoCameraLegacyObliqueTopRight = 3
$msoCameraLegacyPerspectiveBottom = 17
$msoCameraLegacyPerspectiveBottomLeft = 16
$msoCameraLegacyPerspectiveBottomRight = 18
$msoCameraLegacyPerspectiveFront = 14
$msoCameraLegacyPerspectiveLeft = 13
$msoExtrusionBottom = 2
$msoExtrusionBottomLeft = 3
$msoExtrusionBottomRight = 1
$msoExtrusionLeft = 6
$msoExtrusionNone = 5
$msoExtrusionRight = 4
$msoExtrusionTop = 8
$msoExtrusionTopLeft = 9
$msoExtrusionTopRight = 7
$msoPresetExtrusionDirectionMixed = -2
$msoGradientBrass = 20
$msoGradientCalmWater = 8
$msoGradientChrome = 21
$msoGradientChromeII = 22
$msoGradientDaybreak = 4
$msoGradientDesert = 6
$msoGradientEarlySunset = 1
$msoGradientFire = 9
$msoGradientFog = 10
$msoGradientGold = 18
$msoGradientGoldII = 19
$msoGradientHorizon = 5
$msoGradientLateSunset = 2
$msoGradientMahogany = 15
$msoGradientMoss = 11
$msoGradientNightfall = 3
$msoGradientOcean = 7
$msoGradientParchment = 14
$msoGradientPeacock = 12
$msoGradientRainbow = 16
$msoGradientRainbowII = 17
$msoGradientSapphire = 24
$msoGradientSilver = 23
$msoGradientWheat = 13
$msoPresetGradientMixed = -2
$msoLightingBottom = 8
$msoLightingBottomLeft = 7
$msoLightingBottomRight = 9
$msoLightingLeft = 4
$msoLightingNone = 5
$msoLightingRight = 6
$msoLightingTop = 2
$msoLightingTopLeft = 1
$msoLightingTopRight = 3
$msoPresetLightingDirectionMixed = -2
$msoLightingBright = 3
$msoLightingDim = 1
$msoLightingNormal = 2
$msoPresetLightingSoftnessMixed = -2
$msoMaterialClear = 13
$msoMaterialDarkEdge = 11
$msoMaterialFlat = 14
$msoMaterialMatte = 1
$msoMaterialMatte2 = 5
$msoMaterialMetal = 3
$msoMaterialMetal2 = 7
$msoMaterialPlastic = 2
$msoMaterialPlastic2 = 6
$msoMaterialPowder = 10
$msoMaterialSoftEdge = 12
$msoMaterialSoftMetal = 15
$msoMaterialTranslucentPowder = 9
$msoMaterialWarmMatte = 8
$msoMaterialWireFrame = 4
$msoPresetMaterialMixed = -2
# [MsoPresetTextEffect enumeration](https://docs.microsoft.com/ja-jp/office/vba/api/office.msopresettexteffect)
# 1が0なのは誤植ではない ただし、この定数がなにを意味するのかはワードアートギャラリー等が決定する
$msoTextEffect1 = 0
$msoTextEffect2 = 1
$msoTextEffect3 = 2
$msoTextEffect4 = 3
$msoTextEffect5 = 4
$msoTextEffect6 = 5
$msoTextEffect7 = 6
$msoTextEffect8 = 7
$msoTextEffect9 = 8
$msoTextEffect10 = 9
$msoTextEffect11 = 10
$msoTextEffect12 = 11
$msoTextEffect13 = 12
$msoTextEffect14 = 13
$msoTextEffect15 = 14
$msoTextEffect16 = 15
$msoTextEffect17 = 16
$msoTextEffect18 = 17
$msoTextEffect19 = 18
$msoTextEffect20 = 19
$msoTextEffect21 = 20
$msoTextEffect22 = 21
$msoTextEffect23 = 22
$msoTextEffect24 = 23
$msoTextEffect25 = 24
$msoTextEffect26 = 25
$msoTextEffect27 = 26
$msoTextEffect28 = 27
$msoTextEffect29 = 28
$msoTextEffect30 = 29
$msoTextEffect31 = 30
$msoTextEffect32 = 31
$msoTextEffect33 = 32
$msoTextEffect34 = 33
$msoTextEffect35 = 34
$msoTextEffect36 = 35
$msoTextEffect37 = 36
$msoTextEffect38 = 37
$msoTextEffect39 = 38
$msoTextEffect40 = 39
$msoTextEffect41 = 40
$msoTextEffect42 = 41
$msoTextEffect43 = 42
$msoTextEffect44 = 43
$msoTextEffect45 = 44
$msoTextEffect46 = 45
$msoTextEffect47 = 46
$msoTextEffect48 = 47
$msoTextEffect49 = 48
$msoTextEffect50 = 49
$msoTextEffectShapeArchDownCurve = 10
$msoTextEffectShapeArchDownPour = 14
$msoTextEffectShapeArchUpCurve = 9
$msoTextEffectShapeArchUpPour = 13
$msoTextEffectShapeButtonCurve = 12
$msoTextEffectShapeButtonPour = 16
$msoTextEffectShapeCanDown = 20
$msoTextEffectShapeCanUp = 19
$msoTextEffectShapeCascadeDown = 40
$msoTextEffectShapeCascadeUp = 39
$msoTextEffectShapeChevronDown = 6
$msoTextEffectShapeChevronUp = 5
$msoTextEffectShapeCircleCurve = 11
$msoTextEffectShapeCirclePour = 15
$msoTextEffectShapeCurveDown = 18
$msoTextEffectShapeCurveUp = 17
$msoTextEffectShapeDeflate = 26
$msoTextEffectShapeDeflateBottom = 28
$msoTextEffectShapeDeflateInflate = 31
$msoTextEffectShapeDeflateInflateDeflate = 32
$msoTextEffectShapeDeflateTop = 30
$msoTextEffectShapeDoubleWave1 = 23
$msoTextEffectShapeDoubleWave2 = 24
$msoTextEffectShapeInflate = 25
$msoTextEffectShapeInflateBottom = 27
$msoTextEffectShapeInflateTop = 29
$msoTextEffectShapeFadeRight = 33
$msoTextEffectShapeFadeLeft = 34
$msoTextEffectShapeFadeUp = 35
$msoTextEffectShapeFadeDown = 36
$msoTextEffectShapeMixed = -2
$msoTextEffectShapePlainText = 1
$msoTextEffectShapeRingInside = 7
$msoTextEffectShapeRingOutside = 8
$msoPresetTextureMixed = -2 # Not used
$msoTextureBlueTissuePaper = 17
$msoTextureBouquet = 20
$msoTextureBrownMarble = 11
$msoTextureCanvas = 2
$msoTextureCork = 21
$msoTextureDenim = 3
$msoTextureFishFossil = 7
$msoTextureGranite = 12
$msoTextureGreenMarble = 9
$msoTextureMediumWood = 24
$msoTextureNewsprint = 13
$msoTextureOak = 23
$msoTexturePaperBag = 6
$msoTexturePapyrus = 1
$msoTextureParchment = 15
$msoTexturePinkTissuePaper = 18
$msoTexturePurpleMesh = 19
$msoTextureRecycledPaper = 14
$msoTextureSand = 8
$msoTextureStationery = 16
$msoTextureWalnut = 22
$msoTextureWaterDroplets = 5
$msoTextureWhiteMarble = 10
$msoTextureWovenMat = 4
$msoPresetThreeDFormatMixed = -2
$msoThreeD1 = 1
$msoThreeD2 = 2
$msoThreeD3 = 3
$msoThreeD4 = 4
$msoThreeD5 = 5
$msoThreeD6 = 6
$msoThreeD7 = 7
$msoThreeD8 = 8
$msoThreeD9 = 9
$msoThreeD10 = 10
$msoThreeD11 = 11
$msoThreeD12 = 12
$msoThreeD13 = 13
$msoThreeD14 = 14
$msoThreeD15 = 15
$msoThreeD16 = 16
$msoThreeD17 = 17
$msoThreeD18 = 18
$msoThreeD19 = 19
$msoThreeD20 = 20
$msoRecolorType1 = 1
$msoRecolorType2 = 2
$msoRecolorType3 = 3
$msoRecolorType4 = 4
$msoRecolorType5 = 5
$msoRecolorType6 = 6
$msoRecolorType7 = 7
$msoRecolorType8 = 8
$msoRecolorType9 = 9
$msoRecolorType10 = 10
$msoRecolorTypeMixed = -2
$msoRecolorTypeNone = 0
$msoReflectionType1 = 1
$msoReflectionType2 = 2
$msoReflectionType3 = 3
$msoReflectionType4 = 4
$msoReflectionType5 = 5
$msoReflectionType6 = 6
$msoReflectionType7 = 7
$msoReflectionType8 = 8
$msoReflectionType9 = 9
$msoReflectionTypeMixed = -2
$msoReflectionTypeNone = 0
$msoAfterLastSibling = 4
$msoAfterNode = 2
$msoBeforeFirstSibling = 3
$msoBeforeNode = 1
$msoScaleFromBottomRight = 2
$msoScaleFromMiddle = 1
$msoScaleFromTopLeft = 0
$msoScreenSize1024x768 = 4
$msoScreenSize1152x882 = 5
$msoScreenSize1152x900 = 6
$msoScreenSize1280x1024 = 7
$msoScreenSize1600x1200 = 8
$msoScreenSize1800x1440 = 9
$msoScreenSize1920x1200 = 10
$msoScreenSize544x376 = 0
$msoScreenSize640x480 = 1
$msoScreenSize720x512 = 2
$msoScreenSize800x600 = 3
$msoSegmentCurve = 1
$msoSegmentLine = 0
$msoShadowStyleInnerShadow = 1
$msoShadowStyleMixed = -2
$msoShadowStyleOuterShadow = 2
$msoShadow1 = 1
$msoShadow2 = 2
$msoShadow3 = 3
$msoShadow4 = 4
$msoShadow5 = 5
$msoShadow6 = 6
$msoShadow7 = 7
$msoShadow8 = 8
$msoShadow9 = 9
$msoShadow10 = 10
$msoShadow11 = 11
$msoShadow12 = 12
$msoShadow13 = 13
$msoShadow14 = 14
$msoShadow15 = 15
$msoShadow16 = 16
$msoShadow17 = 17
$msoShadow18 = 18
$msoShadow19 = 19
$msoShadow20 = 20
$msoShadowMixed = -2
$msoLineStylePreset1 = 10001
$msoLineStylePreset10 = 10010
$msoLineStylePreset11 = 10011
$msoLineStylePreset12 = 10012
$msoLineStylePreset13 = 10013
$msoLineStylePreset14 = 10014
$msoLineStylePreset15 = 10015
$msoLineStylePreset16 = 10016
$msoLineStylePreset17 = 10017
$msoLineStylePreset18 = 10018
$msoLineStylePreset19 = 10019
$msoLineStylePreset2 = 10002
$msoLineStylePreset20 = 10020
$msoLineStylePreset3 = 10003
$msoLineStylePreset4 = 10004
$msoLineStylePreset5 = 10005
$msoLineStylePreset6 = 10006
$msoLineStylePreset7 = 10007
$msoLineStylePreset8 = 10008
$msoLineStylePreset9 = 10009
$msoShapeStylePreset1 = 1
$msoShapeStylePreset2 = 2
$msoShapeStylePreset3 = 3
$msoShapeStylePreset4 = 4
$msoShapeStylePreset5 = 5
$msoShapeStylePreset6 = 6
$msoShapeStylePreset7 = 7
$msoShapeStylePreset8 = 8
$msoShapeStylePreset9 = 9
$msoShapeStylePreset10 = 10
$msoShapeStylePreset11 = 11
$msoShapeStylePreset12 = 12
$msoShapeStylePreset13 = 13
$msoShapeStylePreset14 = 14
$msoShapeStylePreset15 = 15
$msoShapeStylePreset16 = 16
$msoShapeStylePreset17 = 17
$msoShapeStylePreset18 = 18
$msoShapeStylePreset19 = 19
$msoShapeStylePreset20 = 20
$mso3DModel = 30
$msoAutoShape = 1
$msoCallout = 2
$msoCanvas = 20
$msoChart = 3
$msoComment = 4
$msoContentApp = 27
$msoDiagram = 21
$msoEmbeddedOLEObject = 7
$msoFormControl = 8
$msoFreeform = 5
$msoGraphic = 28
$msoGroup = 6
$msoIgxGraphic = 24
$msoInk = 22
$msoInkComment = 23
$msoLine = 9
$msoLinked3DModel = 31
$msoLinkedGraphic = 29
$msoLinkedOLEObject = 10
$msoLinkedPicture = 11
$msoMedia = 16
$msoOLEControlObject = 12
$msoPicture = 13
$msoPlaceholder = 14
$msoScriptAnchor = 18
$msoShapeTypeMixed = -2
$msoTable = 19
$msoTextBox = 17
$msoTextEffect = 15
$msoWebVideo = 26
$msoSharedWorkspaceTaskPriorityHigh = 1
$msoSharedWorkspaceTaskPriorityLow = 3
$msoSharedWorkspaceTaskPriorityNormal = 2
$msoSharedWorkspaceTaskStatusCompleted = 3
$msoSharedWorkspaceTaskStatusDeferred = 4
$msoSharedWorkspaceTaskStatusInProgress = 2
$msoSharedWorkspaceTaskStatusNotStarted = 1
$msoSharedWorkspaceTaskStatusWaiting = 5
$msoSignatureSubsetAll = 5
$msoSignatureSubsetSignatureLines = 2
$msoSignatureSubsetSignatureLinesSigned = 3
$msoSignatureSubsetSignatureLinesUnsigned = 4
$msoSignatureSubsetSignaturesAllSigs = 0
$msoSignatureSubsetSignaturesNonVisible = 1
$msoSmartArtNodeAbove = 4
$msoSmartArtNodeAfter = 2
$msoSmartArtNodeBefore = 3
$msoSmartArtNodeBelow = 5
$msoSmartArtNodeDefault = 1
$msoSmartArtNodeTypeAssistant = 2
$msoSmartArtNodeTypeDefault = 1
$msoSoftEdgeType1 = 1
$msoSoftEdgeType2 = 2
$msoSoftEdgeType3 = 3
$msoSoftEdgeType4 = 4
$msoSoftEdgeType5 = 5
$msoSoftEdgeType6 = 6
$msoSoftEdgeTypeNone = 0
$SoftEdgeTypeMixed = -2
$msoSyncConflictClientWins = 0
$msoSyncConflictMerge = 2
$msoSyncConflictServerWins = 1
$msoSyncErrorCouldNotCompare = 13
$msoSyncErrorCouldNotConnect = 2
$msoSyncErrorCouldNotOpen = 11
$msoSyncErrorCouldNotResolve = 14
$msoSyncErrorCouldNotUpdate = 12
$msoSyncErrorFileInUse = 6
$msoSyncErrorFileNotFound = 4
$msoSyncErrorFileTooLarge = 5
$msoSyncErrorNone = 0
$msoSyncErrorNoNetwork = 15
$msoSyncErrorOutOfSpace = 3
$msoSyncErrorUnauthorizedUser = 1
$msoSyncErrorUnknown = 16
$msoSyncErrorUnknownDownload = 10
$msoSyncErrorUnknownUpload = 9
$msoSyncErrorVirusDownload = 8
$msoSyncErrorVirusUpload = 7
$msoSyncEventDownloadFailed = 2
$msoSyncEventDownloadInitiated = 0
$msoSyncEventDownloadNoChange = 6
$msoSyncEventDownloadSucceeded = 1
$msoSyncEventOffline = 7
$msoSyncEventUploadFailed = 5
$msoSyncEventUploadInitiated = 3
$msoSyncEventUploadSucceeded = 4
$msoSyncStatusConflict = 4
$msoSyncStatusError = 6
$msoSyncStatusLatest = 1
$msoSyncStatusLocalChanges = 3
$msoSyncStatusNewerAvailable = 2
$msoSyncStatusNoSharedWorkspace = 0
$msoSyncStatusNotRoaming = 0
$msoSyncStatusSuspended = 5
$msoSyncVersionLastViewed = 0
$msoSyncVersionServer = 1
$msoTabStopCenter = 2
$msoTabStopDecimal = 4
$msoTabStopLeft = 1
$msoTabStopMixed = -2
$msoTabStopRight = 3
$msoTargetBrowserIE4 = 2
$msoTargetBrowserIE5 = 3
$msoTargetBrowserIE6 = 4
$msoTargetBrowserV3 = 0
$msoTargetBrowserV4 = 1
$msoAllCaps = 2
$msoCapsMixed = -2
$msoNoCaps = 0
$msoSmallCaps = 1
$msoCaseLower = 2
$msoCaseSentence = 1
$msoCaseTitle = 4
$msoCaseToggle = 5
$msoCaseUpper = 3
$msoCharWrapMixed = -2
$msoCustomCharWrap = 3
$msoNoCharWrap = 0
$msoStandardCharWrap = 1
$msoStrictCharWrap = 2
$msoTextDirectionLeftToRight = 1
$msoTextDirectionMixed = -2
$msoTextDirectionRightToLeft = 2
$msoTextEffectAlignmentCentered = 2
$msoTextEffectAlignmentLeft = 1
$msoTextEffectAlignmentLetterJustify = 4
$msoTextEffectAlignmentMixed = -2
$msoTextEffectAlignmentRight = 3
$msoTextEffectAlignmentStretchJustify = 6
$msoTextEffectAlignmentWordJustify = 5
$msoFontAlignAuto = 0
$msoFontAlignBaseline = 3
$msoFontAlignBottom = 4
$msoFontAlignCenter = 2
$msoFontAlignMixed = -2
$msoFontAlignTop = 1
$msoTextOrientationDownward = 3
$msoTextOrientationHorizontal = 1
$msoTextOrientationHorizontalRotatedFarEast = 6
$msoTextOrientationMixed = -2
$msoTextOrientationUpward = 2
$msoTextOrientationVertical = 5
$msoTextOrientationVerticalFarEast = 4
$msoDoubleStrike = 2
$msoNoStrike = 0
$msoSingleStrike = 1
$msoStrikeMixed = -2
$msoTabAlignCenter = 1
$msoTabAlignDecimal = 3
$msoTabAlignLeft = 0
$msoTabAlignMixed = -2
$msoTabAlignRight = 2
$msoNoUnderline = 0
$msoUnderlineDashHeavyLine = 8
$msoUnderlineDashLine = 7
$msoUnderlineDashLongHeavyLine = 10
$msoUnderlineDashLongLine = 9
$msoUnderlineDotDashHeavyLine = 12
$msoUnderlineDotDashLine = 11
$msoUnderlineDotDotDashHeavyLine = 14
$msoUnderlineDotDotDashLine = 13
$msoUnderlineDottedHeavyLine = 6
$msoUnderlineDottedLine = 5
$msoUnderlineDoubleLine = 3
$msoUnderlineHeavyLine = 4
$msoUnderlineMixed = -2
$msoUnderlineSingleLine = 2
$msoUnderlineWavyDoubleLine = 17
$msoUnderlineWavyHeavyLine = 16
$msoUnderlineWavyLine = 15
$msoUnderlineWords = 1
$msoTextureAlignmentMixed = -2
$msoTextureBottom = 7
$msoTextureBottomLeft = 6
$msoTextureBottomRight = 8
$msoTextureCenter = 4
$msoTextureLeft = 3
$msoTextureRight = 5
$msoTextureTop = 1
$msoTextureTopLeft = 0
$msoTextureTopRight = 2
$msoTexturePreset = 1
$msoTextureTypeMixed = -2
$msoTextureUserDefined = 2
$msoNotThemeColor = 0
$msoThemeColorAccent1 = 5
$msoThemeColorAccent2 = 6
$msoThemeColorAccent3 = 7
$msoThemeColorAccent4 = 8
$msoThemeColorAccent5 = 9
$msoThemeColorAccent6 = 10
$msoThemeColorBackground1 = 14
$msoThemeColorBackground2 = 16
$msoThemeColorDark1 = 1
$msoThemeColorDark2 = 3
$msoThemeColorFollowedHyperlink = 12
$msoThemeColorHyperlink = 11
$msoThemeColorLight1 = 2
$msoThemeColorLight2 = 4
$msoThemeColorMixed = -2
$msoThemeColorText1 = 13
$msoThemeColorText2 = 15
$msoThemeAccent1 = 5
$msoThemeAccent2 = 6
$msoThemeAccent3 = 7
$msoThemeAccent4 = 8
$msoThemeAccent5 = 9
$msoThemeAccent6 = 10
$msoThemeDark1 = 1
$msoThemeDark2 = 3
$msoThemeFollowedHyperlink = 12
$msoThemeHyperlink = 11
$msoThemeLight1 = 2
$msoThemeLight2 = 4
$msoCTrue = 1
$msoFalse = 0
$msoTriStateMixed = -2
$msoTriStateToggle = -3
$msoTrue = -1
$msoAnchorBottom = 4
$msoAnchorBottomBaseLine = 5
$msoAnchorMiddle = 3
$msoAnchorTop = 1
$msoAnchorTopBaseline = 2
$msoVerticalAnchorMixed = -2
$msoWarpFormat1 = 0
$msoWarpFormat10 = 9
$msoWarpFormat11 = 10
$msoWarpFormat12 = 11
$msoWarpFormat13 = 12
$msoWarpFormat14 = 13
$msoWarpFormat15 = 14
$msoWarpFormat16 = 15
$msoWarpFormat17 = 16
$msoWarpFormat18 = 17
$msoWarpFormat19 = 18
$msoWarpFormat2 = 1
$msoWarpFormat20 = 19
$msoWarpFormat21 = 20
$msoWarpFormat22 = 21
$msoWarpFormat23 = 22
$msoWarpFormat24 = 23
$msoWarpFormat25 = 24
$msoWarpFormat26 = 25
$msoWarpFormat27 = 26
$msoWarpFormat28 = 27
$msoWarpFormat29 = 28
$msoWarpFormat3 = 2
$msoWarpFormat30 = 29
$msoWarpFormat31 = 30
$msoWarpFormat32 = 31
$msoWarpFormat33 = 32
$msoWarpFormat34 = 33
$msoWarpFormat35 = 34
$msoWarpFormat36 = 35
$msoWarpFormat37 = 36
$msoWarpFormat4 = 3
$msoWarpFormat5 = 4
$msoWarpFormat6 = 5
$msoWizardMsgLocalStateOff = 2
$msoWizardMsgLocalStateOn = 1
$msoWizardMsgResuming = 5
$msoWizardMsgShowHelp = 3
$msoWizardMsgSuspending = 4
$msoBringForward = 2
$msoBringInFrontOfText = 4
$msoBringToFront = 0
$msoSendBackward = 3
$msoSendBehindText = 5
$msoSendToBack = 1
$OutSpaceSlabStyleError = 2
$OutSpaceSlabStyleNormal = 0
$OutSpaceSlabStyleWarning = 1
$RibbonControlSizeLarge = 1
$RibbonControlSizeRegular = 0
$sigdetApplicationName = 1
$sigdetApplicationVersion = 2
$sigdetColorDepth = 8
$sigdetDelSuggSigner = 16
$sigdetDelSuggSignerEmail = 20
$sigdetDelSuggSignerEmailSet = 21
$sigdetDelSuggSignerLine2 = 18
$sigdetDelSuggSignerLine2Set = 19
$sigdetDelSuggSignerSet = 17
$sigdetDocPreviewImg = 10
$sigdetHashAlgorithm = 14
$sigdetHorizResolution = 6
$sigdetIPCurrentView = 12
$sigdetIPFormHash = 11
$sigdetLocalSigningTime = 0
$sigdetNumberOfMonitors = 5
$sigdetOfficeVersion = 3
$sigdetShouldShowViewWarning = 15
$sigdetSignatureType = 13
$sigdetSignedData = 9
$sigdetVertResolution = 7
$sigdetWindowsVersion = 4
$siglnimgSignedInvalid = 3
$siglnimgSignedValid = 2
$siglnimgSoftwareRequired = 0
$siglnimgUnsigned = 1
$sigprovdetHashAlgorithm = 1
$sigprovdetUIOnly = 2
$sigprovdetUrl = 0
$sigtypeMax = 3
$sigtypeNonVisible = 1
$sigtypeSignatureLine = 2
$sigtypeUnknown = 0


# FileSystem Object
# FilesystemObject.GetSpecsialfolder(folderspec)
# WindowsFolder The Windows folder contains files installed by the Windows operating system.
# SystemFolder The System folder contains libraries, fonts, and device drivers.
# TemporaryFolder The Temp folder is used to store temporary files. Its path is found in the TMP environment variable.

$WindowsFolder = 0
$SystemFolder = 1
$TemporaryFolder = 2
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?