2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Outlook VBAでMAPIプロパティを取得する際のスキーマの一覧

Last updated at Posted at 2021-07-16

はじめに

Outlook VBAでオブジェクトのプロパティを取得する方法はいくつかありますが、その中でobject.PropertyAccessorで取得するものがあります。サンプルとして有名なのは「メールアイテムのインターネットヘッダー情報」を取得する方法です。筆者は、ヘッダー情報を取得したあと「他にどのようなプロパティがあって、どのような記述をすれば取得出来るのか」にとても興味が湧きました。そこで、数ヶ月費やして調べたことをここに記したいと思います。

編集履歴

日付 内容
2024-08-17 公式リファレンスを docs.microsoft.com から learn.microsoft.com に変更

Outlook VBAでのオブジェクトのプロパティの取得方法

Outlook VBAでオブジェクトのプロパティを取得する方法はいくつかあり、列記すると以下のようになります。

  1. 明示的な組込プロパティ(※メソッドによる取得を含む)
  2. ItemPropertiesコレクションからItemPropertyオブジェクトのValueプロパティによる取得
  3. UserPropertiesコレクションからUserPropertyオブジェクトのValueプロパティによる取得
  4. 同様に、UserDefinePropertiesとUserDifinePropety (※Folderオブジェクトのみ)
  5. PropertyAccessor.GetPropertiesメソッドおよびGetPropertyメソッドによる取得

また、上記のプロパティには次のような関係があります。

  • 明示的な組込プロパティItemproperty.Value はほぼ 1対1 の関係
  • PropertyAccessorによるプロパティ明示的な組込プロパティ に含まれていないプロパティも取得出来る
  • PropertyAccessorによるプロパティ は 主に MAPI名前空間プロパティ を扱う
  • UserProperty でも PropertyAccessor でも、どちらを使ってもユーザー定義プロパティを定義出来る
  • 大量にユーザー定義する場合は UserProperty よりも PropertyAccessor を使う方が処理が速い……らしい

PropertyAccessor関連ページの探しにくさの原因

Microsoft LearnでOutlook VBAのPropertyAccessor.GetPropertyメソッドのことを調べていると、何度も何度も見ているのに何がどこに載っているのか分からなくなります。これは、記載されている箇所が下記の2箇所に分かれているからです。

  • Learn / Officeクライアントの開発 / Outlook / Outlook VBA リファレンス
    • (※リダイレクト Docs / Office VBA リファレンス / Outlook)
  • Learn / Officeクライアントの開発 / Outlook / Outlook MAPI リファレンス

前項で少し書きましたが、PropertyAccessorによるプロパティは主にMAPI名前空間プロパティを扱うため、上記2つのリファレンスの内容がお互いに関連性のあることが書いており、順を追って読もうとすると交互に読まなくてはいけない場合が多く出てきます。

そこで、ここでは Outlook VBAでPropertyAccessorを使うときに見ておくべきページを示し、また簡単に説明したいと思います。

公式ヘルプ (Microsoft Learn) で見ておくべきページ

以下に公式ヘルプのツリー構造と見ておくべきページをまとめたツリー構造を示します。ただし、筆者の理解度レベルのものしか示していないことはご了承頂きたいと思います。

以下、クリックで展開します。

Office VBAリファレンスのツリー構造
Office MAPIリファレンスのツリー構造

主なページを順番に解説

ここからは主なページを、理解するのに必要な順番で説明していきます。

  1. PropertyAccess オブジェクトの概要 (Outlook VBAリファレンス)
    1. PropertyAccessor.GetProperty() メソッド
    2. PropertyAccessor.GetProperties() メソッド
  2. 名前空間でプロパティを参照する (Outlook VBAリファレンス)
  3. プロパティタグ (Outlook MAPIリファレンス)
  4. プロパティ識別子の範囲 (Outlook MAPIリファレンス)
  5. プロパティの型 (Outlook MAPIリファレンス)
  6. よく使用されるプロパティセット (Outlook MAPIリファレンス)

1. PropertyAccessor オブジェクトの概要 LINK (Outlook VBAリファレンス)

オブジェクトのプロパティを作成、取得、設定、および削除する機能を提供します。

PropertyAccessor等の対象オブジェクト

組込プロパティ以外のプロパティ取得メンバーの対象オブジェクトを表に示します。

対象オブジェクト ItemProperties UserProperties PropertyAccessor
StorageItem *1
MailItem *1
RemoteItem *1
AppointmentItem *1
MeetingItem *1
ContactItem *1
DistListItem *1
NoteItem *1
PostItem *1
JournalItem *1
SharingItem *1
ReportItem *1
TaskItem *1
TaskRequestItem *1
TaskRequestAcceptItem *1
TaskRequestDeclineItem *1
TaskRequestUpdateItem *1
DocumentItem *1
Folder ○ *2
Store
AddressList
AddressEntry
Recipient
ExchangeUser
ExchangeDistributionList
Attachment

複数のカスタム プロパティを設定または取得するには、パフォーマンス向上のために UserProperties オブジェクトの代わりに PropertyAccessor オブジェクトを使用します。

1-1. PropertyAccessor.GetProperty() メソッド

内容
  • SchemaName で指定したプロパティの値を表すオブジェクト型の値を取得します
構文
  object.PropertyAccessor.GetProperty( _SchemaName_ )
パラメータ
名前 必須/オプション データ型 説明
SchemaName 必須 String 値を取得するプロパティの名前を指定します
戻り値
  • SchemaName で指定したプロパティの値を表すバリアント値
解説
  • 戻り値の実際のデータ型は、基になるプロパティの型と同じになります
  • PT_OBJECTなど特定のデータ型はサポートされておらずエラーが発生します
  • PT_BINARYから文字列の変換には PropertyAccessor.BinaryToString() メソッドを使用します
  • PT_SYSTIMEから現地時間への変換には PropertyAccessor.UTCToLocalTime() メソッドを使用します

1-2. PropertyAccessor.GetProperties() メソッド

内容
  • 1次元配列 SchemaNames で指定したプロパティの値を表すオブジェクト型の値を取得します
構文
  object.PropertyAccessor.GetPropertis( _SchemaNames_ )
パラメータ
名前 必須/オプション データ型 説明
SchemaNames 必須 Variant 値を取得するプロパティの名前が含まれる配列を指定します
戻り値
  • SchemaNames で指定したプロパティの値の配列を表すバリアント値
  • 配列の要素数は SchemaNames 配列の要素数と等しい
  • 特定のプロパティの取得でエラーが発生した場合、返された配列の対応する場所にErr値が返されます
解説
  • 戻り値の配列には、要求されたプロパティの種類に応じた様々なデータ型の要素が含まれます
  • 上記のデータ型は、基になるプロパティの型と同じになります
  • PT_OBJECTなど特定のデータ型はサポートされておらずエラーが発生します
  • PT_BINARYから文字列の変換には PropertyAccessor.BinaryToString() メソッドを使用します
  • PT_SYSTIMEから現地時間への変換には PropertyAccessor.UTCToLocalTime() メソッドを使用します

2. 名前空間でプロパティを参照する LINK (Outlook VBAリファレンス)

PropertyAccessorでサポートされている名前空間とその子オブジェクトの一覧と、名前付きプロパティの参照について説明します。

名前空間とサポートされるOutlookオブジェクト

Namespace(名前空間) 起点となるスキーマ サポートされるOutlookオブジェクト
MAPI - proptag http://schemas.microsoft.com/mapi/proptag Outlook Item Objects
その他の対応オブジェクト
MAPI - id http://schemas.microsoft.com/mapi/id Outlook Item Objects
その他の対応オブジェクト
MAPI - string http://schemas.microsoft.com/mapi/string Outlook Item Objects
その他の対応オブジェクト
Exchange http://schemas.microsoft.com/exchange Outlook Item Objects
その他の対応オブジェクト
Office - office urn:schemas-microsoft-com:office:office Outlook Item Objects
Office - outlook urn:schemas-microsoft-com:office:outlook Outlook Item Objects
DAV - DAV DAV: Outlook Item Objects
DAV - calendar urn:schemas:calendar Outlook Item Objects
DAV - contacts urn:schemas:contacts Outlook Item Objects
DAV - httpmail urn:schemas:httpmail Outlook Item Objects
DAV - mailheader urn:schemas:mailheader Outlook Item Objects
対応するオブジェクト 含まれるOutlookオブジェクト
Outlook Item Objects StorageItem, MailItem, RemoteItem, AppointmentItem
MeetingItem, ContactItem, DistListItem, NoteItem, PostItem
JournalItem, SharingItem, ReportItem, TaskItem, TaskRequestItem
TaskRequestAcceptItem, TaskRequestDeclineItem
TaskRequestUpdateItem, DocumentItem
その他の対応オブジェクト Store, Folder, Recipient, AddressList, AddressEntry, Attachment
ExchangeUser, ExchangeDistributionList

MAPI名前空間

  • Outlookがサポートするプロパティの多くはMAPIプロパティ
  • PropertyAccessorオブジェクトはMAPI名前空間の3つのサブネーム領域(proptag, id, string)をサポートする
proptag 名前空間
  • プロパティのプロパティタグを使用して MAPI名前空間のプロパティにアクセスするときに使用される
  • MAPIプロパティ範囲内(ID が 0x8000 未満のプロパティ)のみをサポートする

この名前空間のプロパティを参照するための形式は次のとおりです。

proptag 名前空間 (PidTag~)
http://schemas.microsoft.com/mapi/proptag/0xHHHHHHHH
  • 公式ページに記載の https は間違いで、実際は http
  • HHHHHHHH は、上位 16ビットに一意のプロパティ識別子、下位 16ビットにプロパティタイプが指定されている 16進数のプロパティタグ値を表す
  • すべての MAPIプロパティには、プロパティが MAPI、Outlookまたはサービスプロバイダーで定義されているかどうかに関係なく、プロパティタグを指定する必要がある
  • 16進数値の先頭にはプレフィックス "0x" を指定する必要がある
id 名前空間
  • グローバル一意識別子(GUID)によって識別される名前空間のプロパティに、識別子を使用してアクセスするときに使用される

この名前空間のプロパティを参照するための形式は次のとおりです。

id 名前空間 (PidLid~)
http://schemas.microsoft.com/mapi/id/{HHHHHHHH-HHHH-HHHH-HHHH-HHHHHHHHHHHH}/HHHHHHHH
  • 公式ページに記載の https は間違いで、実際は http
  • {HHHHHHHH-HHHH-HHHH-HHHH-HHHHHHHHHHHH} はプロパティセットのGUIDを表す
  • HHHHHHHH はプロパティタグを表す ※
    • 筆者注 : LongID(Lid)が「0x0000850E」で、データ型が「PT_BOOLEAN」=「000B」であれば、HHHHHHHH は 850E000B を表す
string 名前空間
  • 識別済みの名前空間の文字列名が付いたプロパティにアクセスするときに使用される

この名前空間のプロパティを参照するための形式は次のとおりです。

string 名前空間 (PidName~)
http://schemas.microsoft.com/mapi/string/{HHHHHHHH-HHHH-HHHH-HHHH-HHHHHHHHHHHH}/name
  • 公式ページに記載の https は間違いで、実際は http
  • {HHHHHHHH-HHHH-HHHH-HHHH-HHHHHHHHHHHH} はプロパティセットのGUIDを表す
  • name は文字列として定義されるローカルプロパティ名を表す
  • name は大文字・小文字を区別する

備考:string 名前空間の name には、エスケープ ルールが適用されます

プロパティ参照に含まれる文字 エスケープ文字
半角スペース %20
二重引用符 ( " ) %22
単一引用符 ( ' ) %27
パーセント ( % ) %25

Exchange 名前空間

  • 文字列名の付いたExchangeプロパティにアクセスするときに使用される

この名前空間のプロパティを参照するための形式は次のとおりです。

Exchange 名前空間
http://schemas.microsoft.com/exchange/name
  • 公式ページに記載の https は間違いで、実際は http
  • name は文字列として定義されるローカルプロパティ名を表す

Office 名前空間

PropertyAccessor オブジェクトは、2 つの Office サブ名前空間をサポートします。

office 名前空間
  • DocumentItemオブジェクトのプロパティにアクセスするときに使用される

この名前空間のプロパティを参照するための形式は次のとおりです。

office 名前空間
urn:schemas-microsoft-com:office:office#name
  • name は文字列として定義されるローカルプロパティ名を表す
outlook 名前空間
  • Outlookアイテムレベルのプロパティにアクセスするときに使用される

この名前空間のプロパティを参照するための形式は次のとおりです。

outlook 名前空間
urn:schemas-microsoft-com:office:outlook#name
  • name は文字列として定義されるローカルプロパティ名を表す

DAV 名前空間

  • Outlookアイテムレベルのプロパティにアクセスするときに使用される

この名前空間のプロパティを参照するための形式は次のとおりです。

DAV 名前空間
    DAV:name
    urn:schemas:calendar:name
    urn:schemas:contacts:name
    urn:schemas:httpmail:name
    urn:schemas:mailheader:name
  • name は文字列として定義されるローカルプロパティ名を表す

3. プロパティタグ LINK (Outlook MAPI リファレンス)

プロパティタグは

  • ビット16~31に示される「一意のプロパティ識別子」
  • ビット0~15に示される「プロパティの型」

を含む32ビットの数値で、これを16進数で表記したものです。

なお、プロパティタグは proptag 名前空間 (PidTag~)id 名前空間 (PidLid~)で使用されます。

4. プロパティ識別子の範囲 LINK (Outlook MAPI リファレンス)

説明

識別子の範囲 プロパティの所有者 プロパティの種類
0000 MAPI 特別な値 PR_NULL
0001 - 0BFF MAPI メッセージエンベロープ(封筒)プロパティ
0C00 - 0DFF MAPI 受信者のプロパティ
0E00 - 0FFF MAPI 送信できないメッセージプロパティ
1000 - 2FFF MAPI メッセージコンテンツ(内容)のプロパティ
3000 - 3FFF MAPI メッセージと受信者以外のオブジェクトのプロパティ
4000 - 57FF トランスポートプロバイダ メッセージエンベロープ(封筒)プロパティ
5800 - 5FFF トランスポートプロバイダ
アドレス帳プロバイダ
受信者のプロパティ
6000 - 65FF クライアント 送信できないメッセージプロパティ
6600 - 67FF サービスプロバイダ 送信できないプロパティ *3
6800 - 7BFF クラスの作成者 カスタムメッセージクラスのメッセージコンテンツプロパティ
7C00 - 7FFF クラスの作成者 カスタムメッセージクラスの送信できないプロパティ
8000 - FFFE クライアント
サービスプロバイダ *4
プロパティ
FFFF MAPI 特別なエラー値 PROP_ID_INVALID

この内、3000~3FFFの範囲は次のサブ範囲に分割されます。

識別子の範囲 プロパティの種類 推定される対象オブジェクト
3000 - 33FF 複数オブジェクトの共通プロパティ
3400 - 35FF メッセージストアのプロパティ Store ?
3600 - 36FF フォルダとアドレス帳のコンテナのプロパティ Folder, AddressList, AddressEntry ?
3700 - 38FF 添付ファイルのプロパティ Attachment ?
3900 - 39FF アドレス帳のプロパティ AddressList, AddressEntry ?
3A00 - 3BFF メッセージングユーザのプロパティ ExchangeUser ?
3C00 - 3CFF 配布リストのプロパティ ExchangeDistributionList ?
3D00 - 3DFF プロファイルのプロパティ ?
3E00 - 3FFF 状態オブジェクトのプロパティ ?

5. プロパティの型 LINK (Outlook MAPI リファレンス)

MAPIでは、単一値プロパティ複数値プロパティがサポートされています。

単一値の型 Hex Value 複数値の型 Hex Value 説明
PT_NULL 0001 - - プロパティ値がない
PT_I2 0002 PT_MV_I2 1002 符号付き16bit整数。PT_SHORTも同値。VBAのInteger型
PT_SHORT 0002 PT_MV_SHORT 1002 符号付き16bit整数。PT_I2も同値。VBAのInteger型
PT_I4 0003 PT_MV_I4 1003 符号付き/なし32bit整数。PT_LONGも同値。VBAのLong型
PT_LONG 0003 PT_MV_LONG 1003 符号付き/なし32bit整数。PT_I4も同値。VBAのLong型
PT_R4 0004 PT_MV_R4 1004 32bit浮動小数点値。PT_FLOATも同値。VBAのSingle型
PT_FLOAT 0004 PT_MV_FLOAT 1004 32bit浮動小数点値。PT_R4も同値。VBAのSingle型
PT_R8 0005 - - 64bit浮動小数点値。PT_DOUBLEも同値。VBAのDouble型
PT_DOUBLE 0005 PT_MV_DOUBLE 1005 64bit浮動小数点値。PT_R8も同値。VBAのDouble型
PT_CURRENCY 0006 PT_MV_CURRENCY 1006 10進数として解釈される64bit整数。VBAのCurrency型(通貨型)
PT_APPTIME 0007 PT_MV_APPTIME 1007 日付と時刻として解釈されるDouble値。VBAのDate型
PT_ERROR 000A - - 符号なし32bit整数
PT_BOOLEAN 000B PT_MV_12 100B 16bitブール値。False = 0, True = 0以外
PT_OBJECT 000D - - IUnknownインターフェースを実装するオブジェクトへのポインタ
PT_I8 0014 PT_MV_I8 1014 符号付64bit(8byte)整数。VBA(64bit)のLongLong型
PT_STRING8 001E PT_MV_STRING8 101E ASCII文字列(?)。VBAのString型
PT_UNICODE 001F PT_MV_UNICODE 101F Unicode(UTF-16LE)文字列。VBAのString型
PT_SYSTIME 0040 PT_MV_SYSTIME 1040 FILETIME構造形式の日付と時間の値。VBAのDate型?
PT_CLSID 0048 PT_MV_CLSID 1048 CLSID構造体の値
PT_SVREID 00FB - - 16bitのCOUNTデータ型とそれに続く構造体 ?
PT_SRESTRICT 00FD - - 可変サイズ。1つ以上の制限構造を表すバイト配列 ?
PT_ACTIONS 00FE - - 可変サイズ。Actionの16ビットCOUNT(Byte型ではない)に、その数のルールアクション構造が続く
PT_BINARY 0102 PT_MV_BINARY 1102 SBinary構造体の値。バイト配列

筆者は PT_CLSID から下はほとんど理解出来ていません。

6. よく使用されるプロパティセット LINK (Outlook MAPI リファレンス)

以下に、プロパティセット名と対応するGUID値を示します。
なお、プロパティセットに対応するGUIDは id 名前空間 (PidLid~)string 名前空間 (PidName~) で使用されます。

Area name Property set GUID value
Common PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046}
Common PSETID_Common {00062008-0000-0000-C000-000000000046}
Contact PSETID_Address {00062004-0000-0000-C000-000000000046}
Email PS_INTERNET_HEADERS {00020386-0000-0000-C000-000000000046}
Calendar PSETID_Appointment {00062002-0000-0000-C000-000000000046}
Calendar PSETID_Meeting {6ED8DA90-450B-101B-98DA-00AA003F1305}
Journal PSETID_Log {0006200A-0000-0000-C000-000000000046}
Messaging PSETID_Messaging {41F28F13-83F4-4114-A584-EEDB5A6B0BFF}
Sticky note PSETID_Note {0006200E-0000-0000-C000-000000000046}
RSS feed PSETID_PostRss {00062041-0000-0000-C000-000000000046}
Task PSETID_Task {00062003-0000-0000-C000-000000000046}
Unified messaging PSETID_UnifiedMessaging {4442858E-A9E3-4E80-B900-317A210CC15B}
Common PS_MAPI {00020328-0000-0000-C000-000000000046}
Sync PSETID_AirSync {71035549-0739-4DCB-9163-00F0580DBBDF}
Sharing PSETID_Sharing {00062040-0000-0000-C000-000000000046}
General messaging PSETID_Report {00062013-0000-0000-C000-000000000046}
Remote messaging PSETID_Remote {00062014-0000-0000-C000-000000000046}
Extracted entities PSETID_XmlExtractedEntities {23239608-685D-4732-9C55-4C95CB4E8E33}
Attachment PSETID_Attachment {96357F7F-59E1-47D0-99A7-46515C183B54}

MAPI標準プロパティと対応するスキーマ

1~6の資料を元に、MAPI標準プロパティのスキーマを調べました。

以下に、各名前空間の標準プロパティ名の接頭語とプロパティ数の表を示します。なお、接頭語をクリックすると先頭のプロパティの解説ページ(公式)に飛びます。

名前空間 標準プロパティ名の接頭語 プロパティ数 備考
proptag PidTag 638 2個は標準以外
id PidLid 278
string PidName 51
合計 967

なお、一部の記述がルールに沿っていないためスキーマが分からないものがありました。また、プロパティの型が不明なもので類推できるものは修正してありますが、正しいとは限りませんのでご了承下さい。

  • PidTagOrgEmailAddress の識別子が TBD と記載されており不明
  • PidTagFormDesignerGuid の型が PT_GUID と記載。PT_CLSID と読み替え
  • PidTagHome2TelephoneNumbers の型が PT_MV_UNICODE8 と記載。 PT_MV_STRING8 と読み替え
  • PidTagInferenceEnabled の識別子が 0x3439000 と記載。0x3439 と読み替え
  • PidTagInferenceEnabled の型が単に Boolean と記載。PT_BOOLEAN と読み替え
  • PidLidCurrentVersionName の型が TBD と記載。Nameなので PT_UNICODE と読み替え
  • PidLidRemoteMessageClass の型が None と記載。RemoteItem.MessageClassと同値のため PT_UNICODE と読み替え
  • PidNameExchangeJunkEmailMoveStamp のnameが Exchange名前空間のスキーマ そのものだったのでそれを記載
  • PidNamePhishingStamp のnameが Outlook名前空間のスキーマ そのものだったのでそれを記載

1. proptag 名前空間 (PidTag~)

MAPI Property name Schemas
PidTagAccessControlListTable http://schemas.microsoft.com/mapi/proptag/0x3fe0000d
PidTagMemberId http://schemas.microsoft.com/mapi/proptag/0x66710014
PidTagMemberName http://schemas.microsoft.com/mapi/proptag/0x6672001e
PidTagMemberRights http://schemas.microsoft.com/mapi/proptag/0x66730003
PidTagAccess http://schemas.microsoft.com/mapi/proptag/0x0ff40003
PidTagAccessLevel http://schemas.microsoft.com/mapi/proptag/0x0ff70003
PidTagPrimarySendAccount http://schemas.microsoft.com/mapi/proptag/0x0e28001f
PidTagAddressType http://schemas.microsoft.com/mapi/proptag/0x3002001f
PidTagAlternateRecipient http://schemas.microsoft.com/mapi/proptag/0x3a010102
PidTagAlternateRecipientAllowed http://schemas.microsoft.com/mapi/proptag/0x0002000b
PidTagAssistant http://schemas.microsoft.com/mapi/proptag/0x3a30001f
PidTagAssistantTelephoneNumber http://schemas.microsoft.com/mapi/proptag/0x3a2e001f
PidTagConversionProhibited http://schemas.microsoft.com/mapi/proptag/0x3a03000b
PidTagInitials http://schemas.microsoft.com/mapi/proptag/0x3a0a001f
PidTagIsdnNumber http://schemas.microsoft.com/mapi/proptag/0x3a2d001f
PidTagKeyword http://schemas.microsoft.com/mapi/proptag/0x3a0b001f
PidTagLanguage http://schemas.microsoft.com/mapi/proptag/0x3a0c001f
PidTagLocality http://schemas.microsoft.com/mapi/proptag/0x3a27001f
PidTagLocation http://schemas.microsoft.com/mapi/proptag/0x3a0d001f
PidTagMailPermission http://schemas.microsoft.com/mapi/proptag/0x3a0e000b
PidTagManagerName http://schemas.microsoft.com/mapi/proptag/0x3a4e001f
PidTagMessageHandlingSystemCommonName http://schemas.microsoft.com/mapi/proptag/0x3a0f001f
PidTagMiddleName http://schemas.microsoft.com/mapi/proptag/0x3a44001f
PidTagNickname http://schemas.microsoft.com/mapi/proptag/0x3a4f001f
PidTagOfficeLocation http://schemas.microsoft.com/mapi/proptag/0x3a19001f
PidTagOrganizationalIdNumber http://schemas.microsoft.com/mapi/proptag/0x3a10001f
PidTagOrgEmailAddress 識別子がTBDと記載、不明である
PidTagOtherAddressCity http://schemas.microsoft.com/mapi/proptag/0x3a5f001f
PidTagOtherAddressPostalCode http://schemas.microsoft.com/mapi/proptag/0x3a61001f
PidTagOtherAddressPostOfficeBox http://schemas.microsoft.com/mapi/proptag/0x3a64001f
PidTagOtherAddressStateOrProvince http://schemas.microsoft.com/mapi/proptag/0x3a62001f
PidTagOtherAddressStreet http://schemas.microsoft.com/mapi/proptag/0x3a63001f
PidTagOtherTelephoneNumber http://schemas.microsoft.com/mapi/proptag/0x3a1f001f
PidTagPagerTelephoneNumber http://schemas.microsoft.com/mapi/proptag/0x3a21001f
PidTagReceivedByEmailAddress http://schemas.microsoft.com/mapi/proptag/0x0076001f
PidTagReceivedByName http://schemas.microsoft.com/mapi/proptag/0x0040001f
PidTagReceivedBySearchKey http://schemas.microsoft.com/mapi/proptag/0x00510102
PidTagReceivedRepresentingAddressType http://schemas.microsoft.com/mapi/proptag/0x0077001f
PidTagReceivedRepresentingEmailAddress http://schemas.microsoft.com/mapi/proptag/0x0078001f
PidTagReceivedRepresentingEntryId http://schemas.microsoft.com/mapi/proptag/0x00430102
PidTagReceivedRepresentingName http://schemas.microsoft.com/mapi/proptag/0x0044001f
PidTagReceivedRepresentingSearchKey http://schemas.microsoft.com/mapi/proptag/0x00520102
PidTagSenderAddressType http://schemas.microsoft.com/mapi/proptag/0x0c1e001f
PidTagSenderEmailAddress http://schemas.microsoft.com/mapi/proptag/0x0c1f001f
PidTagSenderEntryId http://schemas.microsoft.com/mapi/proptag/0x0c190102
PidTagSenderName http://schemas.microsoft.com/mapi/proptag/0x0c1a001f
PidTagSenderSearchKey http://schemas.microsoft.com/mapi/proptag/0x0c1d0102
PidTagSenderSmtpAddress http://schemas.microsoft.com/mapi/proptag/0x5d01001f
PidTagSendInternetEncoding http://schemas.microsoft.com/mapi/proptag/0x3a710003
PidTagSendRichInfo http://schemas.microsoft.com/mapi/proptag/0x3a40000b
PidTagSentRepresentingAddressType http://schemas.microsoft.com/mapi/proptag/0x0064001f
PidTagSentRepresentingEmailAddress http://schemas.microsoft.com/mapi/proptag/0x0065001f
PidTagSentRepresentingEntryId http://schemas.microsoft.com/mapi/proptag/0x00410102
PidTagSentRepresentingName http://schemas.microsoft.com/mapi/proptag/0x0042001f
PidTagSentRepresentingSearchKey http://schemas.microsoft.com/mapi/proptag/0x003b0102
PidTagSentRepresentingSmtpAddress http://schemas.microsoft.com/mapi/proptag/0x5d02001f
PidTagSmtpAddress http://schemas.microsoft.com/mapi/proptag/0x39fe001f
PidTagTransmittableDisplayName http://schemas.microsoft.com/mapi/proptag/0x3a20001f
PidTag7BitDisplayName http://schemas.microsoft.com/mapi/proptag/0x39ff001f
PidTagAbDefaultDir http://schemas.microsoft.com/mapi/proptag/0x3d060102
PidTagAbDefaultPab http://schemas.microsoft.com/mapi/proptag/0x3d070102
PidTagAbProviderId http://schemas.microsoft.com/mapi/proptag/0x36150102
PidTagAbProviders http://schemas.microsoft.com/mapi/proptag/0x3d010102
PidTagAbSearchPath http://schemas.microsoft.com/mapi/proptag/0x3d051102
PidTagAbSearchPathUpdate http://schemas.microsoft.com/mapi/proptag/0x3d110102
PidTagAccount http://schemas.microsoft.com/mapi/proptag/0x3a00001f
PidTagAddressBookChooseDirectoryAutomatically http://schemas.microsoft.com/mapi/proptag/0x3d1c000b
PidTagAnr http://schemas.microsoft.com/mapi/proptag/0x360c001f
PidTagContainerFlags http://schemas.microsoft.com/mapi/proptag/0x36000003
PidTagCreateTemplates http://schemas.microsoft.com/mapi/proptag/0x3604000d
PidTagDefCreateDl http://schemas.microsoft.com/mapi/proptag/0x36110102
PidTagDefCreateMailuser http://schemas.microsoft.com/mapi/proptag/0x36120102
PidTagEmsAbServer http://schemas.microsoft.com/mapi/proptag/0xfffe001f
PidTagMobileTelephoneNumber http://schemas.microsoft.com/mapi/proptag/0x3a1c001f
PidTagOtherAddressCountry http://schemas.microsoft.com/mapi/proptag/0x3a60001f
PidTagReceivedByEntryId http://schemas.microsoft.com/mapi/proptag/0x003f0102
PidTagSearch http://schemas.microsoft.com/mapi/proptag/0x3607000d
PidTagSelectable http://schemas.microsoft.com/mapi/proptag/0x3609000b
PidTagOwnerAppointmentId http://schemas.microsoft.com/mapi/proptag/0x00620003
PidTagProcessed http://schemas.microsoft.com/mapi/proptag/0x7d01000b
PidTagComment http://schemas.microsoft.com/mapi/proptag/0x3004001f
PidTagMessageClass http://schemas.microsoft.com/mapi/proptag/0x001a001f
PidTagMessageCodepage http://schemas.microsoft.com/mapi/proptag/0x3ffd0003
PidTagNull http://schemas.microsoft.com/mapi/proptag/0x00000001
PidTagObjectType http://schemas.microsoft.com/mapi/proptag/0x0ffe0003
PidTagServerAccountIcon http://schemas.microsoft.com/mapi/proptag/0x341f0102
PidTagServerConnectedIcon http://schemas.microsoft.com/mapi/proptag/0x341e0102
PidTagServerTypeDisplayName http://schemas.microsoft.com/mapi/proptag/0x341d0102
PidTagRoamingBinary http://schemas.microsoft.com/mapi/proptag/0x7c090102
PidTagRoamingDatatypes http://schemas.microsoft.com/mapi/proptag/0x7c060003
PidTagRoamingDictionary http://schemas.microsoft.com/mapi/proptag/0x7c070102
PidTagRoamingXmlStream http://schemas.microsoft.com/mapi/proptag/0x7c080102
PidTagInConflict http://schemas.microsoft.com/mapi/proptag/0x666c000b
PidTagBirthday http://schemas.microsoft.com/mapi/proptag/0x3a420040
PidTagBusiness2TelephoneNumber http://schemas.microsoft.com/mapi/proptag/0x3a1b001f
PidTagBusiness2TelephoneNumbers http://schemas.microsoft.com/mapi/proptag/0x3a1b101e
PidTagBusinessFaxNumber http://schemas.microsoft.com/mapi/proptag/0x3a24001f
PidTagBusinessHomePage http://schemas.microsoft.com/mapi/proptag/0x3a51001f
PidTagBusinessTelephoneNumber http://schemas.microsoft.com/mapi/proptag/0x3a08001f
PidTagCallbackTelephoneNumber http://schemas.microsoft.com/mapi/proptag/0x3a02001f
PidTagCarTelephoneNumber http://schemas.microsoft.com/mapi/proptag/0x3a1e001f
PidTagChildrensNames http://schemas.microsoft.com/mapi/proptag/0x3a58101f
PidTagCompanyMainTelephoneNumber http://schemas.microsoft.com/mapi/proptag/0x3a57001f
PidTagCompanyName http://schemas.microsoft.com/mapi/proptag/0x3a16001f
PidTagComputerNetworkName http://schemas.microsoft.com/mapi/proptag/0x3a49001f
PidTagContactAddressTypes http://schemas.microsoft.com/mapi/proptag/0x3a54101f
PidTagContactVersion http://schemas.microsoft.com/mapi/proptag/0x3a520048
PidTagCountry http://schemas.microsoft.com/mapi/proptag/0x3a26001f
PidTagCustomerId http://schemas.microsoft.com/mapi/proptag/0x3a4a001f
PidTagTtyTddPhoneNumber http://schemas.microsoft.com/mapi/proptag/0x3a4b001e
PidTagContactAddressBookDisplayNames http://schemas.microsoft.com/mapi/proptag/0x6624101f
PidTagContactAddressBookFolderEntryId http://schemas.microsoft.com/mapi/proptag/0x66100102
PidTagContactAddressBookFolderEntryIds http://schemas.microsoft.com/mapi/proptag/0x66201102
PidTagContactAddressBookFolderName http://schemas.microsoft.com/mapi/proptag/0x6613001f
PidTagContactAddressBookFolderNames http://schemas.microsoft.com/mapi/proptag/0x6623101f
PidTagContactAddressBookMultipleAddressFlag http://schemas.microsoft.com/mapi/proptag/0x6614000b
PidTagContactAddressBookMultipleAddressFlags http://schemas.microsoft.com/mapi/proptag/0x66251003
PidTagContactAddressBookSortFlag http://schemas.microsoft.com/mapi/proptag/0x6602000b
PidTagContactAddressBookStoreEntryIds http://schemas.microsoft.com/mapi/proptag/0x66261102
PidTagContactAddressBookStoreName http://schemas.microsoft.com/mapi/proptag/0x6612001f
PidTagContactAddressBookStoreNames http://schemas.microsoft.com/mapi/proptag/0x6622101f
PidTagContactAddressBookStoreSupportMask http://schemas.microsoft.com/mapi/proptag/0x66110003
PidTagContactAddressBookStoreSupportMasks http://schemas.microsoft.com/mapi/proptag/0x66211003
PidTagContactAddressBookUid http://schemas.microsoft.com/mapi/proptag/0x66010102
PidTagContainerClass http://schemas.microsoft.com/mapi/proptag/0x3613001f
PidTagContainerContents http://schemas.microsoft.com/mapi/proptag/0x360f000d
PidTagContainerHierarchy http://schemas.microsoft.com/mapi/proptag/0x360e000d
PidTagMessageSubmissionId http://schemas.microsoft.com/mapi/proptag/0x00470102
PidTagNormalizedSubject http://schemas.microsoft.com/mapi/proptag/0x0e1d001e
PidTagOriginalAuthorName http://schemas.microsoft.com/mapi/proptag/0x004d001f
PidTagPriority http://schemas.microsoft.com/mapi/proptag/0x00260003
PidTagReadReceiptRequested http://schemas.microsoft.com/mapi/proptag/0x0029000b
PidTagRtfCompressed http://schemas.microsoft.com/mapi/proptag/0x10090102
PidTagRtfInSync http://schemas.microsoft.com/mapi/proptag/0x0e1f000b
PidTagTransportMessageHeaders http://schemas.microsoft.com/mapi/proptag/0x007d001e
PidTagAcknowledgementMode http://schemas.microsoft.com/mapi/proptag/0x00010003
PidTagAuthorizingUsers http://schemas.microsoft.com/mapi/proptag/0x00030102
PidTagBodyCrc http://schemas.microsoft.com/mapi/proptag/0x0e1c0003
PidTagContentConfidentialityAlgorithmId http://schemas.microsoft.com/mapi/proptag/0x00060102
PidTagContentCorrelator http://schemas.microsoft.com/mapi/proptag/0x00070102
PidTagContentIdentifier http://schemas.microsoft.com/mapi/proptag/0x0008001f
PidTagContentIntegrityCheck http://schemas.microsoft.com/mapi/proptag/0x0c000102
PidTagContentLength http://schemas.microsoft.com/mapi/proptag/0x00090003
PidTagConversionEits http://schemas.microsoft.com/mapi/proptag/0x000c0102
PidTagConvertedEits http://schemas.microsoft.com/mapi/proptag/0x000e0102
PidTagCorrelate http://schemas.microsoft.com/mapi/proptag/0x0e0c000b
PidTagCorrelateMtsid http://schemas.microsoft.com/mapi/proptag/0x0e0d0102
PidTagNonReceiptNotificationRequested http://schemas.microsoft.com/mapi/proptag/0x0c06000b
PidTagNonReceiptReason http://schemas.microsoft.com/mapi/proptag/0x003e0003
PidTagAddressBookHierarchicalIsHierarchicalGroup http://schemas.microsoft.com/mapi/proptag/0x8cdd000b
PidTagAddressBookHierarchicalRootDepartment http://schemas.microsoft.com/mapi/proptag/0x8c98001e
PidTagWizardNoPabPage http://schemas.microsoft.com/mapi/proptag/0x6701000b
PidTagWizardNoPstPage http://schemas.microsoft.com/mapi/proptag/0x6700000b
PidTagRecipientNumber http://schemas.microsoft.com/mapi/proptag/0x66620003
PidTagAssociatedContentCount http://schemas.microsoft.com/mapi/proptag/0x36170003
PidTagContentCount http://schemas.microsoft.com/mapi/proptag/0x36020003
PidTagContentUnreadCount http://schemas.microsoft.com/mapi/proptag/0x36030003
PidTagIpmAppointmentEntryId http://schemas.microsoft.com/mapi/proptag/0x36d00102
PidTagIpmContactEntryId http://schemas.microsoft.com/mapi/proptag/0x36d10102
PidTagIpmDraftsEntryId http://schemas.microsoft.com/mapi/proptag/0x36d70102
PidTagIpmJournalEntryId http://schemas.microsoft.com/mapi/proptag/0x36d20102
PidTagIpmNoteEntryId http://schemas.microsoft.com/mapi/proptag/0x36d30102
PidTagIpmOutboxEntryId http://schemas.microsoft.com/mapi/proptag/0x35e20102
PidTagIpmSentMailEntryId http://schemas.microsoft.com/mapi/proptag/0x35e40102
PidTagIpmSubtreeEntryId http://schemas.microsoft.com/mapi/proptag/0x35e00102
PidTagIpmTaskEntryId http://schemas.microsoft.com/mapi/proptag/0x36d40102
PidTagIpmWastebasketEntryId http://schemas.microsoft.com/mapi/proptag/0x35e30102
PidTagFreeBusyPublishEnd http://schemas.microsoft.com/mapi/proptag/0x68480003
PidTagFreeBusyPublishStart http://schemas.microsoft.com/mapi/proptag/0x68470003
PidTagFreeBusyRangeTimestamp http://schemas.microsoft.com/mapi/proptag/0x68680040
PidTagScheduleInfoAppointmentTombstone http://schemas.microsoft.com/mapi/proptag/0x686a0102
PidTagScheduleInfoAutoAcceptAppointments http://schemas.microsoft.com/mapi/proptag/0x686d000b
PidTagScheduleInfoDelegateEntryIds http://schemas.microsoft.com/mapi/proptag/0x68451102
PidTagScheduleInfoDelegateNames http://schemas.microsoft.com/mapi/proptag/0x6844101e
PidTagScheduleInfoDelegatorWantsCopy http://schemas.microsoft.com/mapi/proptag/0x6842000b
PidTagScheduleInfoDelegatorWantsInfo http://schemas.microsoft.com/mapi/proptag/0x684b000b
PidTagScheduleInfoDisallowOverlappingAppts http://schemas.microsoft.com/mapi/proptag/0x686f000b
PidTagScheduleInfoDisallowRecurringAppts http://schemas.microsoft.com/mapi/proptag/0x686e000b
PidTagScheduleInfoDontMailDelegates http://schemas.microsoft.com/mapi/proptag/0x6843000b
PidTagScheduleInfoFreeBusy http://schemas.microsoft.com/mapi/proptag/0x686c0102
PidTagScheduleInfoFreeBusyAway http://schemas.microsoft.com/mapi/proptag/0x68561102
PidTagScheduleInfoFreeBusyBusy http://schemas.microsoft.com/mapi/proptag/0x68541102
PidTagScheduleInfoFreeBusyMerged http://schemas.microsoft.com/mapi/proptag/0x68501102
PidTagScheduleInfoFreeBusyTentative http://schemas.microsoft.com/mapi/proptag/0x68521102
PidTagScheduleInfoMonthsAway http://schemas.microsoft.com/mapi/proptag/0x68551003
PidTagScheduleInfoMonthsBusy http://schemas.microsoft.com/mapi/proptag/0x68531003
PidTagScheduleInfoMonthsMerged http://schemas.microsoft.com/mapi/proptag/0x684f1003
PidTagScheduleInfoMonthsTentative http://schemas.microsoft.com/mapi/proptag/0x68511003
PidTagScheduleInfoResourceType http://schemas.microsoft.com/mapi/proptag/0x68410003
PidTagConversionWithLossProhibited http://schemas.microsoft.com/mapi/proptag/0x000d000b
PidTagIncompleteCopy http://schemas.microsoft.com/mapi/proptag/0x0035000b
PidTagBody http://schemas.microsoft.com/mapi/proptag/0x1000001f
PidTagBodyHtml http://schemas.microsoft.com/mapi/proptag/0x1013001f
PidTagConversationIndex http://schemas.microsoft.com/mapi/proptag/0x00710102
PidTagConversationKey http://schemas.microsoft.com/mapi/proptag/0x000b0102
PidTagConversationTopic http://schemas.microsoft.com/mapi/proptag/0x0070001f
PidTagHtml http://schemas.microsoft.com/mapi/proptag/0x10130102
PidTagIconIndex http://schemas.microsoft.com/mapi/proptag/0x10800003
PidTagImportance http://schemas.microsoft.com/mapi/proptag/0x00170003
PidTagInReplyToId http://schemas.microsoft.com/mapi/proptag/0x1042001f
PidTagIpmReturnRequested http://schemas.microsoft.com/mapi/proptag/0x0c02000b
PidTagItemTemporaryflags http://schemas.microsoft.com/mapi/proptag/0x10970003
PidTagLanguages http://schemas.microsoft.com/mapi/proptag/0x002f001f
PidTagLatestDeliveryTime http://schemas.microsoft.com/mapi/proptag/0x00190040
PidTagMessageCcMe http://schemas.microsoft.com/mapi/proptag/0x0058000b
PidTagMessageDownloadTime http://schemas.microsoft.com/mapi/proptag/0x0e180003
PidTagMessageFlags http://schemas.microsoft.com/mapi/proptag/0x0e070003
PidTagMessageRecipientMe http://schemas.microsoft.com/mapi/proptag/0x0059000b
PidTagMessageRecipients http://schemas.microsoft.com/mapi/proptag/0x0e12000d
PidTagMessageSize http://schemas.microsoft.com/mapi/proptag/0x0e080003
PidTagMessageSizeExtended http://schemas.microsoft.com/mapi/proptag/0x0e080014
PidTagMessageStatus http://schemas.microsoft.com/mapi/proptag/0x0e170003
PidTagMessageToMe http://schemas.microsoft.com/mapi/proptag/0x0057000b
PidTagMiniIcon http://schemas.microsoft.com/mapi/proptag/0x0ffc0102
PidTagNonDeliveryReportDiagCode http://schemas.microsoft.com/mapi/proptag/0x0c050003
PidTagNonDeliveryReportFromEntryId http://schemas.microsoft.com/mapi/proptag/0x69040102
PidTagNonDeliveryReportFromName http://schemas.microsoft.com/mapi/proptag/0x6905001e
PidTagNonDeliveryReportFromSearchKey http://schemas.microsoft.com/mapi/proptag/0x69060102
PidTagNonDeliveryReportReasonCode http://schemas.microsoft.com/mapi/proptag/0x0c040003
PidTagOriginalAuthorEntryId http://schemas.microsoft.com/mapi/proptag/0x004c0102
PidTagOriginalDeliveryTime http://schemas.microsoft.com/mapi/proptag/0x00550040
PidTagOriginalDisplayBcc http://schemas.microsoft.com/mapi/proptag/0x0072001e
PidTagOriginalDisplayCc http://schemas.microsoft.com/mapi/proptag/0x0073001e
PidTagOriginalDisplayName http://schemas.microsoft.com/mapi/proptag/0x3a13001e
PidTagOriginalDisplayTo http://schemas.microsoft.com/mapi/proptag/0x0074001e
PidTagOriginalEntryId http://schemas.microsoft.com/mapi/proptag/0x3a120102
PidTagOriginalSearchKey http://schemas.microsoft.com/mapi/proptag/0x3a140102
PidTagOriginalSenderAddressType http://schemas.microsoft.com/mapi/proptag/0x0066001e
PidTagOriginalSenderEmailAddress http://schemas.microsoft.com/mapi/proptag/0x0067001e
PidTagOriginalSenderEntryId http://schemas.microsoft.com/mapi/proptag/0x005b0102
PidTagOriginalSenderName http://schemas.microsoft.com/mapi/proptag/0x005a001e
PidTagOriginalSenderSearchKey http://schemas.microsoft.com/mapi/proptag/0x005c0102
PidTagOriginalSensitivity http://schemas.microsoft.com/mapi/proptag/0x002e0003
PidTagOriginalSentRepresentingAddressType http://schemas.microsoft.com/mapi/proptag/0x0068001e
PidTagOriginalSentRepresentingEmailAddress http://schemas.microsoft.com/mapi/proptag/0x0069001e
PidTagOriginalSentRepresentingEntryId http://schemas.microsoft.com/mapi/proptag/0x005e0102
PidTagOriginalSentRepresentingName http://schemas.microsoft.com/mapi/proptag/0x005d001e
PidTagOriginalSentRepresentingSearchKey http://schemas.microsoft.com/mapi/proptag/0x005f0102
PidTagOriginalSubject http://schemas.microsoft.com/mapi/proptag/0x0049001e
PidTagOriginalSubmitTime http://schemas.microsoft.com/mapi/proptag/0x004e0040
PidTagSensitivity http://schemas.microsoft.com/mapi/proptag/0x00360003
PidTagSubject http://schemas.microsoft.com/mapi/proptag/0x0037001e
PidTagSubjectPrefix http://schemas.microsoft.com/mapi/proptag/0x003d001e
PidTagUrlComponentName http://schemas.microsoft.com/mapi/proptag/0x10f3001e
PidTagAutoForwardComment http://schemas.microsoft.com/mapi/proptag/0x0004001f
PidTagAutoForwarded http://schemas.microsoft.com/mapi/proptag/0x0005000b
PidTagLastVerbExecuted http://schemas.microsoft.com/mapi/proptag/0x10810003
PidTagLastVerbExecutionTime http://schemas.microsoft.com/mapi/proptag/0x10820040
PidTagConflictItems http://schemas.microsoft.com/mapi/proptag/0x10981102
PidTagConflictEntryId http://schemas.microsoft.com/mapi/proptag/0x3ff00102
PidTagEntryId http://schemas.microsoft.com/mapi/proptag/0x0fff0102
PidTagParentEntryId http://schemas.microsoft.com/mapi/proptag/0x0e090102
PidTagRecipientEntryId http://schemas.microsoft.com/mapi/proptag/0x5ff70102
PidTagRecordKey http://schemas.microsoft.com/mapi/proptag/0x0ff90102
PidTagSearchKey http://schemas.microsoft.com/mapi/proptag/0x300b0102
PidTagStoreEntryId http://schemas.microsoft.com/mapi/proptag/0x0ffb0102
PidTagStoreEntryIdEmsmdbV1 http://schemas.microsoft.com/mapi/proptag/0x65f60102
PidTagStoreProvider http://schemas.microsoft.com/mapi/proptag/0x34140102
PidTagStoreRecordKey http://schemas.microsoft.com/mapi/proptag/0x0ffa0102
PidTagDisplayType http://schemas.microsoft.com/mapi/proptag/0x39000003
PidTagDisplayTypeEx http://schemas.microsoft.com/mapi/proptag/0x39050003
PidTagTemplateid http://schemas.microsoft.com/mapi/proptag/0x39020102
PidTagRenderingPosition http://schemas.microsoft.com/mapi/proptag/0x370b0003
PidTagDepth http://schemas.microsoft.com/mapi/proptag/0x30050003
PidTagDisplayName http://schemas.microsoft.com/mapi/proptag/0x3001001f
PidTagEmailAddress http://schemas.microsoft.com/mapi/proptag/0x3003001f
PidTagFormCategory http://schemas.microsoft.com/mapi/proptag/0x3304001f
PidTagFormCategorySub http://schemas.microsoft.com/mapi/proptag/0x3305001f
PidTagFormClassId http://schemas.microsoft.com/mapi/proptag/0x33020048
PidTagFormContactName http://schemas.microsoft.com/mapi/proptag/0x3303001f
PidTagFormDesignerGuid http://schemas.microsoft.com/mapi/proptag/0x330948
PidTagFormDesignerName http://schemas.microsoft.com/mapi/proptag/0x3308001f
PidTagFormHidden http://schemas.microsoft.com/mapi/proptag/0x3307000b
PidTagFormHostMap http://schemas.microsoft.com/mapi/proptag/0x33061003
PidTagFormMessageBehavior http://schemas.microsoft.com/mapi/proptag/0x330a0003
PidTagFormVersion http://schemas.microsoft.com/mapi/proptag/0x3301001f
PidTagProviderDisplay http://schemas.microsoft.com/mapi/proptag/0x3006001e
PidTagProviderDllName http://schemas.microsoft.com/mapi/proptag/0x300a001e
PidTagProviderOrdinal http://schemas.microsoft.com/mapi/proptag/0x300d0003
PidTagProviderUid http://schemas.microsoft.com/mapi/proptag/0x300c0102
PidTagResourceFlags http://schemas.microsoft.com/mapi/proptag/0x30090003
PidTagRowid http://schemas.microsoft.com/mapi/proptag/0x30000003
PidTagDefaultPostMessageClass http://schemas.microsoft.com/mapi/proptag/0x36e5001e
PidTagDefaultViewEntryId http://schemas.microsoft.com/mapi/proptag/0x36160102
PidTagDetailsTable http://schemas.microsoft.com/mapi/proptag/0x3605000d
PidTagExtendedFolderFlags http://schemas.microsoft.com/mapi/proptag/0x36da0102
PidTagFolderAssociatedContents http://schemas.microsoft.com/mapi/proptag/0x3610000d
PidTagFolderType http://schemas.microsoft.com/mapi/proptag/0x36010003
PidTagFreeBusyEntryIds http://schemas.microsoft.com/mapi/proptag/0x36e41102
PidTagRemindersOnlineEntryId http://schemas.microsoft.com/mapi/proptag/0x36d50102
PidTagStatus http://schemas.microsoft.com/mapi/proptag/0x360b0003
PidTagSubfolders http://schemas.microsoft.com/mapi/proptag/0x360a000b
PidTagControlFlags http://schemas.microsoft.com/mapi/proptag/0x3f000003
PidTagControlId http://schemas.microsoft.com/mapi/proptag/0x3f070102
PidTagControlStructure http://schemas.microsoft.com/mapi/proptag/0x3f010102
PidTagControlType http://schemas.microsoft.com/mapi/proptag/0x3f020003
PidTagDeltaX http://schemas.microsoft.com/mapi/proptag/0x3f030003
PidTagDeltaY http://schemas.microsoft.com/mapi/proptag/0x3f040003
PidTagXCoordinate http://schemas.microsoft.com/mapi/proptag/0x3f050003
PidTagYCoordinate http://schemas.microsoft.com/mapi/proptag/0x3f060003
PidTagInitialDetailsPane http://schemas.microsoft.com/mapi/proptag/0x3f080003
PidTagDeferredDeliveryTime http://schemas.microsoft.com/mapi/proptag/0x000f0040
PidTagDeliverTime http://schemas.microsoft.com/mapi/proptag/0x00100040
PidTagDiscardReason http://schemas.microsoft.com/mapi/proptag/0x00110003
PidTagDisclosureOfRecipients http://schemas.microsoft.com/mapi/proptag/0x0012000b
PidTagDistributionListExpansionHistory http://schemas.microsoft.com/mapi/proptag/0x00130102
PidTagDistributionListExpansionProhibited http://schemas.microsoft.com/mapi/proptag/0x0014000b
PidTagEndDate http://schemas.microsoft.com/mapi/proptag/0x00610040
PidTagExpiryTime http://schemas.microsoft.com/mapi/proptag/0x00150040
PidTagProofOfSubmissionRequested http://schemas.microsoft.com/mapi/proptag/0x0028000b
PidTagProviderSubmitTime http://schemas.microsoft.com/mapi/proptag/0x00480040
PidTagReadReceiptEntryId http://schemas.microsoft.com/mapi/proptag/0x00460102
PidTagReadReceiptSearchKey http://schemas.microsoft.com/mapi/proptag/0x00530102
PidTagReceiptTime http://schemas.microsoft.com/mapi/proptag/0x002a0040
PidTagReceivedByAddressType http://schemas.microsoft.com/mapi/proptag/0x0075001e
PidTagRecipientReassignmentProhibited http://schemas.microsoft.com/mapi/proptag/0x002b000b
PidTagRedirectionHistory http://schemas.microsoft.com/mapi/proptag/0x002c0102
PidTagRelatedMessageIds http://schemas.microsoft.com/mapi/proptag/0x002d0102
PidTagReplyRecipientEntries http://schemas.microsoft.com/mapi/proptag/0x004f0102
PidTagReplyRecipientNames http://schemas.microsoft.com/mapi/proptag/0x0050001e
PidTagReplyTime http://schemas.microsoft.com/mapi/proptag/0x00300040
PidTagReportDisposition http://schemas.microsoft.com/mapi/proptag/0x0080001e
PidTagReportDispositionMode http://schemas.microsoft.com/mapi/proptag/0x0081001e
PidTagReportDispositionOptions http://schemas.microsoft.com/mapi/proptag/0x0085001e
PidTagReportDispositionToEmailAddresses http://schemas.microsoft.com/mapi/proptag/0x0084101e
PidTagReportDispositionToNames http://schemas.microsoft.com/mapi/proptag/0x0083101e
PidTagReportEntryId http://schemas.microsoft.com/mapi/proptag/0x00450102
PidTagReportName http://schemas.microsoft.com/mapi/proptag/0x003a001e
PidTagReportOriginalSender http://schemas.microsoft.com/mapi/proptag/0x0082001e
PidTagReportSearchKey http://schemas.microsoft.com/mapi/proptag/0x00540102
PidTagReportTag http://schemas.microsoft.com/mapi/proptag/0x00310102
PidTagReportTime http://schemas.microsoft.com/mapi/proptag/0x00320040
PidTagResponseRequested http://schemas.microsoft.com/mapi/proptag/0x0063000b
PidTagReturnedMessageid http://schemas.microsoft.com/mapi/proptag/0x0033000b
PidTagStartDate http://schemas.microsoft.com/mapi/proptag/0x00600040
PidTagSubjectMessageId http://schemas.microsoft.com/mapi/proptag/0x00380102
PidTagTnefCorrelationKey http://schemas.microsoft.com/mapi/proptag/0x007f0102
PidTagFolderWebViewInfo http://schemas.microsoft.com/mapi/proptag/0x36df0102
PidTagUserFields http://schemas.microsoft.com/mapi/proptag/0x36e30102
PidTagDepartmentName http://schemas.microsoft.com/mapi/proptag/0x3a18001f
PidTagDisplayNamePrefix http://schemas.microsoft.com/mapi/proptag/0x3a45001f
PidTagFtpSite http://schemas.microsoft.com/mapi/proptag/0x3a4c001f
PidTagGender http://schemas.microsoft.com/mapi/proptag/0x3a4d0002
PidTagGeneration http://schemas.microsoft.com/mapi/proptag/0x3a05001f
PidTagGivenName http://schemas.microsoft.com/mapi/proptag/0x3a06001f
PidTagGovernmentIdNumber http://schemas.microsoft.com/mapi/proptag/0x3a07001f
PidTagHobbies http://schemas.microsoft.com/mapi/proptag/0x3a43001f
PidTagHome2TelephoneNumber http://schemas.microsoft.com/mapi/proptag/0x3a2f001f
PidTagHome2TelephoneNumbers http://schemas.microsoft.com/mapi/proptag/0x3a2f101e
PidTagHomeAddressCity http://schemas.microsoft.com/mapi/proptag/0x3a59001f
PidTagHomeAddressCountry http://schemas.microsoft.com/mapi/proptag/0x3a5a001f
PidTagHomeAddressPostalCode http://schemas.microsoft.com/mapi/proptag/0x3a5b001f
PidTagHomeAddressPostOfficeBox http://schemas.microsoft.com/mapi/proptag/0x3a5e001f
PidTagHomeAddressStateOrProvince http://schemas.microsoft.com/mapi/proptag/0x3a5c001f
PidTagHomeAddressStreet http://schemas.microsoft.com/mapi/proptag/0x3a5d001f
PidTagHomeFaxNumber http://schemas.microsoft.com/mapi/proptag/0x3a25001f
PidTagHomeTelephoneNumber http://schemas.microsoft.com/mapi/proptag/0x3a09001f
PidTagPersonalHomePage http://schemas.microsoft.com/mapi/proptag/0x3a50001e
PidTagPostalAddress http://schemas.microsoft.com/mapi/proptag/0x3a15001e
PidTagPostalCode http://schemas.microsoft.com/mapi/proptag/0x3a2a001f
PidTagPostOfficeBox http://schemas.microsoft.com/mapi/proptag/0x3a2b001e
PidTagPreferredByName http://schemas.microsoft.com/mapi/proptag/0x3a47001e
PidTagPrimaryFaxNumber http://schemas.microsoft.com/mapi/proptag/0x3a23001e
PidTagPrimaryTelephoneNumber http://schemas.microsoft.com/mapi/proptag/0x3a1a001e
PidTagProfession http://schemas.microsoft.com/mapi/proptag/0x3a46001e
PidTagRadioTelephoneNumber http://schemas.microsoft.com/mapi/proptag/0x3a1d001e
PidTagReferredByName http://schemas.microsoft.com/mapi/proptag/0x3a47001e
PidTagSpouseName http://schemas.microsoft.com/mapi/proptag/0x3a48001e
PidTagStateOrProvince http://schemas.microsoft.com/mapi/proptag/0x3a28001e
PidTagStreetAddress http://schemas.microsoft.com/mapi/proptag/0x3a29001e
PidTagSurname http://schemas.microsoft.com/mapi/proptag/0x3a11001e
PidTagTelecommunicationsDeviceForDeafTelephoneNumber http://schemas.microsoft.com/mapi/proptag/0x3a4b001e
PidTagTelexNumber http://schemas.microsoft.com/mapi/proptag/0x3a2c001e
PidTagTitle http://schemas.microsoft.com/mapi/proptag/0x3a17001e
PidTagUserCertificate http://schemas.microsoft.com/mapi/proptag/0x3a220102
PidTagUserX509Certificate http://schemas.microsoft.com/mapi/proptag/0x3a701102
PidTagWeddingAnniversary http://schemas.microsoft.com/mapi/proptag/0x3a410040
PidTagReportingDistributionListName http://schemas.microsoft.com/mapi/proptag/0x10030102
PidTagReportingMessageTransferAgentCertificate http://schemas.microsoft.com/mapi/proptag/0x10040102
PidTagReportText http://schemas.microsoft.com/mapi/proptag/0x1001001e
PidTagRtfSyncBodyCount http://schemas.microsoft.com/mapi/proptag/0x10070003
PidTagRtfSyncBodyCrc http://schemas.microsoft.com/mapi/proptag/0x10060003
PidTagRtfSyncBodyTag http://schemas.microsoft.com/mapi/proptag/0x1008001e
PidTagRtfSyncPrefixCount http://schemas.microsoft.com/mapi/proptag/0x10100003
PidTagRtfSyncTrailingCount http://schemas.microsoft.com/mapi/proptag/0x10110003
PidTagDefaultStore http://schemas.microsoft.com/mapi/proptag/0x3400000b
PidTagFinderEntryId http://schemas.microsoft.com/mapi/proptag/0x35e70102
PidTagProviderDisplayName http://schemas.microsoft.com/mapi/proptag/0x3418001e
PidTagProviderIcon http://schemas.microsoft.com/mapi/proptag/0x3417001f
PidTagReceiveFolderSettings http://schemas.microsoft.com/mapi/proptag/0x3415000d
PidTagStoreState http://schemas.microsoft.com/mapi/proptag/0x340e0003
PidTagStoreUnicodeMask http://schemas.microsoft.com/mapi/proptag/0x340f0003
PidTagValidFolderMask http://schemas.microsoft.com/mapi/proptag/0x35df0003
PidTagViewsEntryId http://schemas.microsoft.com/mapi/proptag/0x35e50102
PidTagDeleteAfterSubmit http://schemas.microsoft.com/mapi/proptag/0x0e01000b
PidTagDiscreteValues http://schemas.microsoft.com/mapi/proptag/0x0e0e000b
PidTagIcon http://schemas.microsoft.com/mapi/proptag/0x0ffd0102
PidTagParentDisplay http://schemas.microsoft.com/mapi/proptag/0x0e05001e
PidTagPreprocess http://schemas.microsoft.com/mapi/proptag/0x0e22000b
PidTagProofOfSubmission http://schemas.microsoft.com/mapi/proptag/0x0e260102
PidTagProviderParentItemId http://schemas.microsoft.com/mapi/proptag/0x0ea40102
PidTagRead http://schemas.microsoft.com/mapi/proptag/0x0e69000b
PidTagRecipientStatus http://schemas.microsoft.com/mapi/proptag/0x0e150003
PidTagResponsibility http://schemas.microsoft.com/mapi/proptag/0x0e0f000b
PidTagRowType http://schemas.microsoft.com/mapi/proptag/0x0ff50003
PidTagSentMailEntryId http://schemas.microsoft.com/mapi/proptag/0x0e0a0102
PidTagSpoolerStatus http://schemas.microsoft.com/mapi/proptag/0x0e100003
PidTagSubmitFlags http://schemas.microsoft.com/mapi/proptag/0x0e140003
PidTagSwappedToDoData http://schemas.microsoft.com/mapi/proptag/0x0e2d0102
PidTagSwappedToDoStore http://schemas.microsoft.com/mapi/proptag/0x0e2c0102
PidTagTnefUnprocessedProps http://schemas.microsoft.com/mapi/proptag/0x0e9c0102
PidTagToDoItemFlags http://schemas.microsoft.com/mapi/proptag/0x0e2b0003
PidTagTransportKey http://schemas.microsoft.com/mapi/proptag/0x0e160003
PidTagDefaultProfile http://schemas.microsoft.com/mapi/proptag/0x3d04000b
PidTagServiceDeleteFiles http://schemas.microsoft.com/mapi/proptag/0x3d10101e
PidTagServiceDllName http://schemas.microsoft.com/mapi/proptag/0x3d0a001e
PidTagServiceEntryName http://schemas.microsoft.com/mapi/proptag/0x3d0b001e
PidTagServiceExtraUids http://schemas.microsoft.com/mapi/proptag/0x3d0d0102
PidTagServiceInstallId http://schemas.microsoft.com/mapi/proptag/0x3d13001e
PidTagServiceName http://schemas.microsoft.com/mapi/proptag/0x3d09001e
PidTagServices http://schemas.microsoft.com/mapi/proptag/0x3d0e0102
PidTagServiceSupportFiles http://schemas.microsoft.com/mapi/proptag/0x3d0f101e
PidTagServiceUid http://schemas.microsoft.com/mapi/proptag/0x3d0c0102
PidTagStoreProviders http://schemas.microsoft.com/mapi/proptag/0x3d000102
PidTagTransportProviders http://schemas.microsoft.com/mapi/proptag/0x3d020102
PidTagProfileHomeServerFQDN http://schemas.microsoft.com/mapi/proptag/0x662a001f
PidTagProfileName http://schemas.microsoft.com/mapi/proptag/0x3d12001e
PidTagProfileServerFullVersion http://schemas.microsoft.com/mapi/proptag/0x663b0102
PidTagProfileServerVersion http://schemas.microsoft.com/mapi/proptag/0x661b0003
PidTagProfileType http://schemas.microsoft.com/mapi/proptag/0x660a0003
PidTagDeliveryPoint http://schemas.microsoft.com/mapi/proptag/0x0c070003
PidTagExplicitConversion http://schemas.microsoft.com/mapi/proptag/0x0c010003
PidTagPhysicalDeliveryBureauFaxDelivery http://schemas.microsoft.com/mapi/proptag/0x0c0a000b
PidTagPhysicalDeliveryMode http://schemas.microsoft.com/mapi/proptag/0x0c0b0003
PidTagPhysicalDeliveryReportRequest http://schemas.microsoft.com/mapi/proptag/0x0c0c0003
PidTagPhysicalForwardingAddress http://schemas.microsoft.com/mapi/proptag/0x0c0d0102
PidTagPhysicalForwardingAddressRequested http://schemas.microsoft.com/mapi/proptag/0x0c0e000b
PidTagPhysicalForwardingProhibited http://schemas.microsoft.com/mapi/proptag/0x0c0f000b
PidTagPhysicalRenditionAttributes http://schemas.microsoft.com/mapi/proptag/0x0c100102
PidTagProofOfDelivery http://schemas.microsoft.com/mapi/proptag/0x0c110102
PidTagProofOfDeliveryRequested http://schemas.microsoft.com/mapi/proptag/0x0c12000b
PidTagRecipientCertificate http://schemas.microsoft.com/mapi/proptag/0x0c130102
PidTagRecipientNumberForAdvice http://schemas.microsoft.com/mapi/proptag/0x0c14001e
PidTagRecipientType http://schemas.microsoft.com/mapi/proptag/0x0c150003
PidTagRegisteredMailType http://schemas.microsoft.com/mapi/proptag/0x0c160003
PidTagReplyRequested http://schemas.microsoft.com/mapi/proptag/0x0c17000b
PidTagRequestedDeliveryMethod http://schemas.microsoft.com/mapi/proptag/0x0c180003
PidTagSupplementaryInfo http://schemas.microsoft.com/mapi/proptag/0x0c1b001e
PidTagTypeOfX400User http://schemas.microsoft.com/mapi/proptag/0x0c1c0003
PidTagDeferredSendNumber http://schemas.microsoft.com/mapi/proptag/0x3feb0003
PidTagDeferredSendTime http://schemas.microsoft.com/mapi/proptag/0x3fef0040
PidTagDeferredSendUnits http://schemas.microsoft.com/mapi/proptag/0x3fec0003
PidTagDelegatedByRule http://schemas.microsoft.com/mapi/proptag/0x3fe3000b
PidTagExpiryNumber http://schemas.microsoft.com/mapi/proptag/0x3fed0003
PidTagExpiryUnits http://schemas.microsoft.com/mapi/proptag/0x3fee0003
PidTagIdentityDisplay http://schemas.microsoft.com/mapi/proptag/0x3e00001f
PidTagIdentityEntryId http://schemas.microsoft.com/mapi/proptag/0x3e010102
PidTagIdentitySearchKey http://schemas.microsoft.com/mapi/proptag/0x3e050102
PidTagRemoteProgress http://schemas.microsoft.com/mapi/proptag/0x3e0b0003
PidTagRemoteProgressText http://schemas.microsoft.com/mapi/proptag/0x3e0c001e
PidTagRemoteValidateOk http://schemas.microsoft.com/mapi/proptag/0x3e0d000b
PidTagResolveMethod http://schemas.microsoft.com/mapi/proptag/0x3fe70003
PidTagResourceMethods http://schemas.microsoft.com/mapi/proptag/0x3e020003
PidTagResourcePath http://schemas.microsoft.com/mapi/proptag/0x3e07001e
PidTagResourceType http://schemas.microsoft.com/mapi/proptag/0x3e030003
PidTagStatusCode http://schemas.microsoft.com/mapi/proptag/0x3e040003
PidTagStatusString http://schemas.microsoft.com/mapi/proptag/0x3e08001e
PidTagProviderItemId http://schemas.microsoft.com/mapi/proptag/0x0ea30102
PidTagDisplayBcc http://schemas.microsoft.com/mapi/proptag/0x0e02001f
PidTagDisplayCc http://schemas.microsoft.com/mapi/proptag/0x0e03001f
PidTagDisplayTo http://schemas.microsoft.com/mapi/proptag/0x0e04001f
PidTagAttachAdditionalInformation http://schemas.microsoft.com/mapi/proptag/0x370f0102
PidTagAttachContentBase http://schemas.microsoft.com/mapi/proptag/0x3711001f
PidTagAttachContentId http://schemas.microsoft.com/mapi/proptag/0x3712001f
PidTagAttachContentLocation http://schemas.microsoft.com/mapi/proptag/0x3713001f
PidTagAttachDataBinary http://schemas.microsoft.com/mapi/proptag/0x37010102
PidTagAttachDataObject http://schemas.microsoft.com/mapi/proptag/0x3701000d
PidTagAttachEncoding http://schemas.microsoft.com/mapi/proptag/0x37020102
PidTagAttachExtension http://schemas.microsoft.com/mapi/proptag/0x3703001f
PidTagAttachFilename http://schemas.microsoft.com/mapi/proptag/0x3704001f
PidTagAttachFlags http://schemas.microsoft.com/mapi/proptag/0x37140003
PidTagAttachLongFilename http://schemas.microsoft.com/mapi/proptag/0x3707001f
PidTagAttachLongPathname http://schemas.microsoft.com/mapi/proptag/0x370d001f
PidTagAttachmentContactPhoto http://schemas.microsoft.com/mapi/proptag/0x7fff000b
PidTagAttachmentFlags http://schemas.microsoft.com/mapi/proptag/0x7ffd0003
PidTagAttachmentHidden http://schemas.microsoft.com/mapi/proptag/0x7ffe000b
PidTagAttachmentLinkId http://schemas.microsoft.com/mapi/proptag/0x7ffa0003
PidTagAttachMethod http://schemas.microsoft.com/mapi/proptag/0x37050003
PidTagAttachMimeTag http://schemas.microsoft.com/mapi/proptag/0x370e001f
PidTagAttachNumber http://schemas.microsoft.com/mapi/proptag/0x0e210003
PidTagAttachPathname http://schemas.microsoft.com/mapi/proptag/0x3708001f
PidTagAttachRendering http://schemas.microsoft.com/mapi/proptag/0x37090102
PidTagAttachSize http://schemas.microsoft.com/mapi/proptag/0x0e200003
PidTagAttachTag http://schemas.microsoft.com/mapi/proptag/0x370a0102
PidTagAttachTransportName http://schemas.microsoft.com/mapi/proptag/0x370c001f
PidTagAutoConfigurationUserEmail http://schemas.microsoft.com/mapi/proptag/0x67fd001f
PidTagAutoConfigurationUserName http://schemas.microsoft.com/mapi/proptag/0x67fe001f
PidTagAutoConfigurationUserPassword http://schemas.microsoft.com/mapi/proptag/0x67fc001f
PidTagHasAttachments http://schemas.microsoft.com/mapi/proptag/0x0e1b000b
PidTagMessageAttachments http://schemas.microsoft.com/mapi/proptag/0x0e13000d
PidTagTextAttachmentCharset http://schemas.microsoft.com/mapi/proptag/0x371b001f
PidTagAttachMimeSequence http://schemas.microsoft.com/mapi/proptag/0x37100003
PidTagExceptionEndTime http://schemas.microsoft.com/mapi/proptag/0x7ffc0040
PidTagExceptionReplaceTime http://schemas.microsoft.com/mapi/proptag/0x7ff90040
PidTagExceptionStartTime http://schemas.microsoft.com/mapi/proptag/0x7ffb0040
PidTagDelegateFlags http://schemas.microsoft.com/mapi/proptag/0x686b1003
PidTagFreeBusyCountMonths http://schemas.microsoft.com/mapi/proptag/0x68690003
PidTagViewDescriptorName http://schemas.microsoft.com/mapi/proptag/0x7006001e
PidTagInferenceEnabled http://schemas.microsoft.com/mapi/proptag/0x3439000b
PidTagMailboxOwnerName http://schemas.microsoft.com/mapi/proptag/0x001f001f
PidTagNonIpmSubtreeEntryId http://schemas.microsoft.com/mapi/proptag/0x66200102
PidTagSearchOwnerId http://schemas.microsoft.com/mapi/proptag/0x34190003
PidTagOwnStoreEntryId http://schemas.microsoft.com/mapi/proptag/0x3e060102
PidTagClientSubmitTime http://schemas.microsoft.com/mapi/proptag/0x00390040
PidTagCreationTime http://schemas.microsoft.com/mapi/proptag/0x30070040
PidTagLastModificationTime http://schemas.microsoft.com/mapi/proptag/0x30080040
PidTagMessageDeliveryTime http://schemas.microsoft.com/mapi/proptag/0x0e060040
PidTagBodyContentLocation http://schemas.microsoft.com/mapi/proptag/0x1014001f
PidTagInternetApproved http://schemas.microsoft.com/mapi/proptag/0x1030001f
PidTagInternetArticleNumber http://schemas.microsoft.com/mapi/proptag/0x0e230003
PidTagInternetControl http://schemas.microsoft.com/mapi/proptag/0x1031001f
PidTagInternetDistribution http://schemas.microsoft.com/mapi/proptag/0x1032001f
PidTagInternetFollowupTo http://schemas.microsoft.com/mapi/proptag/0x1033001f
PidTagInternetLines http://schemas.microsoft.com/mapi/proptag/0x10340003
PidTagInternetMailOverrideFormat http://schemas.microsoft.com/mapi/proptag/0x59020003
PidTagInternetMessageId http://schemas.microsoft.com/mapi/proptag/0x1035001f
PidTagInternetNntpPath http://schemas.microsoft.com/mapi/proptag/0x1038001f
PidTagInternetOrganization http://schemas.microsoft.com/mapi/proptag/0x1037001f
PidTagInternetReferences http://schemas.microsoft.com/mapi/proptag/0x1039001f
PidTagInternetReturnPath http://schemas.microsoft.com/mapi/proptag/0x1046001f
PidTagOriginatorAndDistributionListExpansionHistory http://schemas.microsoft.com/mapi/proptag/0x10020102
PidTagOriginatorCertificate http://schemas.microsoft.com/mapi/proptag/0x00220102
PidTagOriginatorDeliveryReportRequested http://schemas.microsoft.com/mapi/proptag/0x0023000b
PidTagOriginatorNonDeliveryReportRequested http://schemas.microsoft.com/mapi/proptag/0x0c08000b
PidTagOriginatorRequestedAlternateRecipient http://schemas.microsoft.com/mapi/proptag/0x0c090102
PidTagOriginatorReturnAddress http://schemas.microsoft.com/mapi/proptag/0x00240102
PidTagAgingGranularity http://schemas.microsoft.com/mapi/proptag/0x36ee0003
PidTagAgingPeriod http://schemas.microsoft.com/mapi/proptag/0x36ec0003
PidTagFlagCompleteTime http://schemas.microsoft.com/mapi/proptag/0x10910040
PidTagFlagStatus http://schemas.microsoft.com/mapi/proptag/0x10900003
PidTagInternetCodepage http://schemas.microsoft.com/mapi/proptag/0x3fde0003
PidTagListHelp http://schemas.microsoft.com/mapi/proptag/0x1043001f
PidTagListSubscribe http://schemas.microsoft.com/mapi/proptag/0x1044001f
PidTagListUnsubscribe http://schemas.microsoft.com/mapi/proptag/0x1045001f
PidTagLocaleId http://schemas.microsoft.com/mapi/proptag/0x66a10003
PidTagMappingSignature http://schemas.microsoft.com/mapi/proptag/0x0ff80102
PidTagMessageEditorFormat http://schemas.microsoft.com/mapi/proptag/0x59090003
PidTagMessageLocaleId http://schemas.microsoft.com/mapi/proptag/0x3ff10003
PidTagRpcOverHttpFlags http://schemas.microsoft.com/mapi/proptag/0x66230003
PidTagRpcOverHttpProxyAuthScheme http://schemas.microsoft.com/mapi/proptag/0x66270003
PidTagRpcOverHttpProxyPrincipalName http://schemas.microsoft.com/mapi/proptag/0x6625001f
PidTagRpcOverHttpProxyServer http://schemas.microsoft.com/mapi/proptag/0x6622001f
PidTagStoreSupportMask http://schemas.microsoft.com/mapi/proptag/0x340d0003
PidTagViewDescriptorVersion http://schemas.microsoft.com/mapi/proptag/0x70070003
PidTagExchangeProfileSectionId http://schemas.microsoft.com/mapi/proptag/0x3d150102
PidTagAdditionalRenEntryIds http://schemas.microsoft.com/mapi/proptag/0x36d81102
PidTagAdditionalRenEntryIdsEx http://schemas.microsoft.com/mapi/proptag/0x36d90102
PidTagAttachPayloadClass http://schemas.microsoft.com/mapi/proptag/0x371a001f
PidTagAttachPayloadProviderGuidString http://schemas.microsoft.com/mapi/proptag/0x3719001f
PidTagCommonViewsEntryId http://schemas.microsoft.com/mapi/proptag/0x35e60102
PidTagNextSendAcct http://schemas.microsoft.com/mapi/proptag/0x0e29001f
PidTagAssociatedSharingProvider http://schemas.microsoft.com/mapi/proptag/0x0ea00048
PidTagPstConfigurationFlags http://schemas.microsoft.com/mapi/proptag/0x67700003
PidTagPstPasswordSzNew http://schemas.microsoft.com/mapi/proptag/0x6704001e
PidTagPstPasswordSzOld http://schemas.microsoft.com/mapi/proptag/0x6703001e
PidTagPstPath http://schemas.microsoft.com/mapi/proptag/0x6700001e
PidTagPstPathHint http://schemas.microsoft.com/mapi/proptag/0x6771001e
PidTagPstRememberPassword http://schemas.microsoft.com/mapi/proptag/0x6701000b
PidTagFollowupIcon http://schemas.microsoft.com/mapi/proptag/0x10950003
PidTagImapCachedMsgsize http://schemas.microsoft.com/mapi/proptag/0x10f00102
PidTagContentReturnRequested http://schemas.microsoft.com/mapi/proptag/0x000a000b
PidTagExtendedRuleMessageActions http://schemas.microsoft.com/mapi/proptag/0x0e990102
PidTagExtendedRuleMessageCondition http://schemas.microsoft.com/mapi/proptag/0x0e9a0102
PidTagExtendedRuleSizeLimit http://schemas.microsoft.com/mapi/proptag/0x0e9b0003
PidTagHasDeferredActionMessages http://schemas.microsoft.com/mapi/proptag/0x3fea000b
PidTagReplyTemplateId http://schemas.microsoft.com/mapi/proptag/0x65c20102
PidTagRuleMsgName http://schemas.microsoft.com/mapi/proptag/0x65ec001f
PidTagRuleMsgProvider http://schemas.microsoft.com/mapi/proptag/0x65eb001f
PidTagSearchAttachments http://schemas.microsoft.com/mapi/proptag/0x0ea5001f
PidTagSearchFolderDefinition http://schemas.microsoft.com/mapi/proptag/0x68450102
PidTagSearchFolderEfpFlags http://schemas.microsoft.com/mapi/proptag/0x68480003
PidTagSearchFolderExpiration http://schemas.microsoft.com/mapi/proptag/0x683a0003
PidTagSearchFolderId http://schemas.microsoft.com/mapi/proptag/0x68420102
PidTagSearchFolderLastUsed http://schemas.microsoft.com/mapi/proptag/0x68340003
PidTagSearchFolderStorageType http://schemas.microsoft.com/mapi/proptag/0x68460003
PidTagSearchFolderTag http://schemas.microsoft.com/mapi/proptag/0x68470003
PidTagSearchFolderTemplateId http://schemas.microsoft.com/mapi/proptag/0x68410003
PidTagSearchRecipientEmailBcc http://schemas.microsoft.com/mapi/proptag/0x0ea8001f
PidTagSearchRecipientEmailCc http://schemas.microsoft.com/mapi/proptag/0x0ea7001f
PidTagSearchRecipientEmailTo http://schemas.microsoft.com/mapi/proptag/0x0ea6001f
PidTagMessageToken http://schemas.microsoft.com/mapi/proptag/0x0c030102
PidTagOriginalMessageClass http://schemas.microsoft.com/mapi/proptag/0x004b001e
PidTagImplicitConversionProhibited http://schemas.microsoft.com/mapi/proptag/0x0016000b
PidTagMessageDeliveryId http://schemas.microsoft.com/mapi/proptag/0x001b0102
PidTagMessageSecurityLabel http://schemas.microsoft.com/mapi/proptag/0x001e0102
PidTagObsoletedMessageIds http://schemas.microsoft.com/mapi/proptag/0x001f0102
PidTagOriginalAuthorAddressType http://schemas.microsoft.com/mapi/proptag/0x0079001e
PidTagOriginalAuthorEmailAddress http://schemas.microsoft.com/mapi/proptag/0x007a001e
PidTagOriginalAuthorSearchKey http://schemas.microsoft.com/mapi/proptag/0x00560102
PidTagOriginalEits http://schemas.microsoft.com/mapi/proptag/0x00210102
PidTagOriginallyIntendedRecipAddrtype http://schemas.microsoft.com/mapi/proptag/0x007b001e
PidTagOriginallyIntendedRecipEmailAddress http://schemas.microsoft.com/mapi/proptag/0x007c001e
PidTagOriginallyIntendedRecipEntryId http://schemas.microsoft.com/mapi/proptag/0x10120102
PidTagOriginallyIntendedRecipientName http://schemas.microsoft.com/mapi/proptag/0x00200102
PidTagOriginatingMtaCertificate http://schemas.microsoft.com/mapi/proptag/0x0e250102
PidTagOriginCheck http://schemas.microsoft.com/mapi/proptag/0x00270102
PidTagMemberEntryId http://schemas.microsoft.com/mapi/proptag/0x0fff0102
PidTagRuleActions http://schemas.microsoft.com/mapi/proptag/0x668000fe
PidTagRuleCondition http://schemas.microsoft.com/mapi/proptag/0x667900fd
PidTagRuleId http://schemas.microsoft.com/mapi/proptag/0x66740014
PidTagRuleLevel http://schemas.microsoft.com/mapi/proptag/0x66830003
PidTagRuleName http://schemas.microsoft.com/mapi/proptag/0x6682001e
PidTagRuleProvider http://schemas.microsoft.com/mapi/proptag/0x6681001e
PidTagRuleProviderData http://schemas.microsoft.com/mapi/proptag/0x66840102
PidTagRuleSequence http://schemas.microsoft.com/mapi/proptag/0x66760003
PidTagRulesTable http://schemas.microsoft.com/mapi/proptag/0x3fe1000d
PidTagRuleState http://schemas.microsoft.com/mapi/proptag/0x66770003
PidTagRuleUserFlags http://schemas.microsoft.com/mapi/proptag/0x66780003
PidTagJunkAddRecipientsToSafeSendersList http://schemas.microsoft.com/mapi/proptag/0x61030003
PidTagJunkIncludeContacts http://schemas.microsoft.com/mapi/proptag/0x61000003
PidTagJunkPermanentlyDelete http://schemas.microsoft.com/mapi/proptag/0x61020003
PidTagJunkPhishingEnableLinks http://schemas.microsoft.com/mapi/proptag/0x6107000b
PidTagJunkThreshold http://schemas.microsoft.com/mapi/proptag/0x61010003
PidTagSpamJunkSenders http://schemas.microsoft.com/mapi/proptag/0x041a001f
PidTagSpamThreshold http://schemas.microsoft.com/mapi/proptag/0x041b0003
PidTagSpamTrustedRecipients http://schemas.microsoft.com/mapi/proptag/0x0419001f
PidTagSpamTrustedSenders http://schemas.microsoft.com/mapi/proptag/0x0418001f
PidTagInstanceKey http://schemas.microsoft.com/mapi/proptag/0x0ff60102
PidTagLongTermEntryIdFromTable http://schemas.microsoft.com/mapi/proptag/0x66700102
PidTagOrdinalMost http://schemas.microsoft.com/mapi/proptag/0x36e20003
PidTagRecipientDisplayName http://schemas.microsoft.com/mapi/proptag/0x5ff6001e
PidTagRecipientFlags http://schemas.microsoft.com/mapi/proptag/0x5ffd0003
PidTagRecipientProposed http://schemas.microsoft.com/mapi/proptag/0x5fe1000b
PidTagRecipientProposedEndTime http://schemas.microsoft.com/mapi/proptag/0x5fe40040
PidTagRecipientProposedStartTime http://schemas.microsoft.com/mapi/proptag/0x5fe30040
PidTagRecipientTrackStatus http://schemas.microsoft.com/mapi/proptag/0x5fff0003
PidTagRecipientTrackStatusTime http://schemas.microsoft.com/mapi/proptag/0x5ffb0040
PidTagX400ContentType http://schemas.microsoft.com/mapi/proptag/0x003c0102

2. id 名前空間 (PidLid~) 278

MAPI Property name Schemas
PidLidAppointmentColor http://schemas.microsoft.com/mapi/id/{00062002-0000-0000-c000-000000000046}/82140003
PidLidAppointmentDuration http://schemas.microsoft.com/mapi/id/{00062002-0000-0000-c000-000000000046}/82130003
PidLidAppointmentEndWhole http://schemas.microsoft.com/mapi/id/{00062002-0000-0000-c000-000000000046}/820e0040
PidLidAppointmentRecur http://schemas.microsoft.com/mapi/id/{00062002-0000-0000-c000-000000000046}/82160102
PidLidAppointmentStartWhole http://schemas.microsoft.com/mapi/id/{00062002-0000-0000-c000-000000000046}/820d0040
PidLidAppointmentSubType http://schemas.microsoft.com/mapi/id/{00062002-0000-0000-c000-000000000046}/8215000b
PidLidAppointmentTimeZoneDefinitionEndDisplay http://schemas.microsoft.com/mapi/id/{00062002-0000-0000-c000-000000000046}/825f0102
PidLidAppointmentTimeZoneDefinitionRecur http://schemas.microsoft.com/mapi/id/{00062002-0000-0000-c000-000000000046}/82600102
PidLidAppointmentTimeZoneDefinitionStartDisplay http://schemas.microsoft.com/mapi/id/{00062002-0000-0000-c000-000000000046}/825e0102
PidLidBusyStatus http://schemas.microsoft.com/mapi/id/{00062002-0000-0000-c000-000000000046}/82050003
PidLidClipEnd http://schemas.microsoft.com/mapi/id/{00062002-0000-0000-c000-000000000046}/82360040
PidLidClipStart http://schemas.microsoft.com/mapi/id/{00062002-0000-0000-c000-000000000046}/82350040
PidLidExceptionReplaceTime http://schemas.microsoft.com/mapi/id/{00062002-0000-0000-c000-000000000046}/82280040
PidLidLocation http://schemas.microsoft.com/mapi/id/{00062002-0000-0000-c000-000000000046}/8208001f
PidLidRecurrencePattern http://schemas.microsoft.com/mapi/id/{00062002-0000-0000-c000-000000000046}/8232001f
PidLidRecurrenceType http://schemas.microsoft.com/mapi/id/{00062002-0000-0000-c000-000000000046}/82310003
PidLidRecurring http://schemas.microsoft.com/mapi/id/{00062002-0000-0000-c000-000000000046}/8223000b
PidLidTimeZoneDescription http://schemas.microsoft.com/mapi/id/{00062002-0000-0000-c000-000000000046}/8234001f
PidLidTimeZoneStruct http://schemas.microsoft.com/mapi/id/{00062002-0000-0000-c000-000000000046}/82330102
PidLidCategories http://schemas.microsoft.com/mapi/id/{00020329-0000-0000-c000-000000000046}/2328101f
PidLidAgingDontAgeMe http://schemas.microsoft.com/mapi/id/{00062008-0000-0000-c000-000000000046}/850e000b
PidLidSendMeetingAsIcal http://schemas.microsoft.com/mapi/id/{00062002-0000-0000-c000-000000000046}/8200000b
PidLidAddressBookProviderArrayType http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/80290003
PidLidAddressBookProviderEmailList http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/80281003
PidLidAddressCountryCode http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/80dd001f
PidLidAnniversaryEventEntryId http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/804e0102
PidLidAutoLog http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/8025000b
PidLidBirthdayEventEntryId http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/804d0102
PidLidBusinessCardCardPicture http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/80410102
PidLidBusinessCardDisplayDefinition http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/80400102
PidLidContactCharacterSet http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/80230003
PidLidContactItemData http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/80071003
PidLidContactUserField1 http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/804f001f
PidLidContactUserField2 http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/8050001f
PidLidContactUserField3 http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/8051001f
PidLidContactUserField4 http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/8052001f
PidLidDistributionListChecksum http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/804c0003
PidLidDistributionListMembers http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/80551102
PidLidDistributionListName http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/8053001f
PidLidDistributionListOneOffMembers http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/80541102
PidLidEmail1AddressType http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/8082001f
PidLidEmail1DisplayName http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/8080001f
PidLidEmail1EmailAddress http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/8083001f
PidLidEmail1OriginalDisplayName http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/8084001f
PidLidEmail1OriginalEntryId http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/80850102
PidLidEmail2AddressType http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/8092001f
PidLidEmail2DisplayName http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/8090001f
PidLidEmail2EmailAddress http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/8093001f
PidLidEmail2OriginalDisplayName http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/8094001f
PidLidEmail2OriginalEntryId http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/80950102
PidLidEmail3AddressType http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/80a2001f
PidLidEmail3DisplayName http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/80a0001f
PidLidEmail3EmailAddress http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/80a3001f
PidLidEmail3OriginalDisplayName http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/80a4001f
PidLidEmail3OriginalEntryId http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/80a50102
PidLidFax1AddressType http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/80b2001f
PidLidFax1DisplayName http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/80b0001f
PidLidFax1EmailAddress http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/80b3001f
PidLidFax1EmailType http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/80b7001f
PidLidFax1EntryId http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/80b10102
PidLidFax1OriginalDisplayName http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/80b4001f
PidLidFax1OriginalEntryId http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/80b50102
PidLidFax1RichTextFormat http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/80b6000b
PidLidFax2AddressType http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/80c2001f
PidLidFax2DisplayName http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/80c0001f
PidLidFax2EmailAddress http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/80c3001f
PidLidFax2EmailType http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/80c7001f
PidLidFax2EntryId http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/80c10102
PidLidFax2OriginalDisplayName http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/80c4001f
PidLidFax2OriginalEntryId http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/80c50102
PidLidFax2RichTextFormat http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/80c6000b
PidLidFax3AddressType http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/80d2001f
PidLidFax3DisplayName http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/80d0001f
PidLidFax3EmailAddress http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/80d3001f
PidLidFax3EmailType http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/80d7001f
PidLidFax3EntryId http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/80d10102
PidLidFax3OriginalDisplayName http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/80d4001f
PidLidFax3OriginalEntryId http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/80d50102
PidLidFax3RichTextFormat http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/80d6000b
PidLidFileUnder http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/8005001f
PidLidFileUnderId http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/80060003
PidLidFileUnderList http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/80261003
PidLidFreeBusyLocation http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/80d8001f
PidLidHasPicture http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/8015000b
PidLidHomeAddress http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/801a001f
PidLidHomeAddressCountryCode http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/80da001f
PidLidHtml http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/802b001f
PidLidInstantMessagingAddress http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/8062001f
PidLidOtherAddress http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/801c001f
PidLidOtherAddressCountryCode http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/80dc001f
PidLidPostalAddressId http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/80220003
PidLidUserX509Certificate http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/80d91102
PidLidWorkAddress http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/801b001f
PidLidWorkAddressCity http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/8046001f
PidLidWorkAddressCountry http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/8049001f
PidLidWorkAddressCountryCode http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/80db001f
PidLidWorkAddressPostalCode http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/8048001f
PidLidWorkAddressPostOfficeBox http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/804a001f
PidLidWorkAddressState http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/8047001f
PidLidWorkAddressStreet http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/8045001f
PidLidYomiCompanyName http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/802e001f
PidLidYomiFirstName http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/802c001f
PidLidYomiLastName http://schemas.microsoft.com/mapi/id/{00062004-0000-0000-c000-000000000046}/802d001f
PidLidContactLinkEntry http://schemas.microsoft.com/mapi/id/{00062008-0000-0000-c000-000000000046}/85850102
PidLidContactLinkName http://schemas.microsoft.com/mapi/id/{00062008-0000-0000-c000-000000000046}/8586001f
PidLidContactLinkSearchKey http://schemas.microsoft.com/mapi/id/{00062008-0000-0000-c000-000000000046}/85840102
PidLidReferenceEntryId http://schemas.microsoft.com/mapi/id/{00062008-0000-0000-c000-000000000046}/85bd0102
PidLidFlagRequest http://schemas.microsoft.com/mapi/id/{00062008-0000-0000-c000-000000000046}/8530001f
PidLidAutoProcessState http://schemas.microsoft.com/mapi/id/{00062008-0000-0000-c000-000000000046}/851a0003
PidLidBilling http://schemas.microsoft.com/mapi/id/{00062008-0000-0000-c000-000000000046}/8535001f
PidLidClassification http://schemas.microsoft.com/mapi/id/{00062008-0000-0000-c000-000000000046}/85b6001f
PidLidClassificationDescription http://schemas.microsoft.com/mapi/id/{00062008-0000-0000-c000-000000000046}/85b7001f
PidLidClassificationGuid http://schemas.microsoft.com/mapi/id/{00062008-0000-0000-c000-000000000046}/85b8001f
PidLidClassificationKeep http://schemas.microsoft.com/mapi/id/{00062008-0000-0000-c000-000000000046}/85ba000b
PidLidClassified http://schemas.microsoft.com/mapi/id/{00062008-0000-0000-c000-000000000046}/85b5000b
PidLidCommonEnd http://schemas.microsoft.com/mapi/id/{00062008-0000-0000-c000-000000000046}/85170040
PidLidCommonStart http://schemas.microsoft.com/mapi/id/{00062008-0000-0000-c000-000000000046}/85160040
PidLidCompanies http://schemas.microsoft.com/mapi/id/{00062008-0000-0000-c000-000000000046}/8539101f
PidLidContacts http://schemas.microsoft.com/mapi/id/{00062008-0000-0000-c000-000000000046}/853a101f
PidLidCurrentVersion http://schemas.microsoft.com/mapi/id/{00062008-0000-0000-c000-000000000046}/85520003
PidLidCurrentVersionName http://schemas.microsoft.com/mapi/id/{00062008-0000-0000-c000-000000000046}/8554001f
PidLidHeaderItem http://schemas.microsoft.com/mapi/id/{00062008-0000-0000-c000-000000000046}/85780003
PidLidInternetAccountName http://schemas.microsoft.com/mapi/id/{00062008-0000-0000-c000-000000000046}/8580001f
PidLidInternetAccountStamp http://schemas.microsoft.com/mapi/id/{00062008-0000-0000-c000-000000000046}/8581001f
PidLidIsInterpersonalFax http://schemas.microsoft.com/mapi/id/{00062008-0000-0000-c000-000000000046}/859b000b
PidLidMileage http://schemas.microsoft.com/mapi/id/{00062008-0000-0000-c000-000000000046}/8534001f
PidLidNonSendableBccTrackStatus http://schemas.microsoft.com/mapi/id/{00062008-0000-0000-c000-000000000046}/85451003
PidLidNonSendCcTrackStatus http://schemas.microsoft.com/mapi/id/{00062008-0000-0000-c000-000000000046}/85441003
PidLidNonSendToTrackStatus http://schemas.microsoft.com/mapi/id/{00062008-0000-0000-c000-000000000046}/85431003
PidLidOfflineStatus http://schemas.microsoft.com/mapi/id/{00062008-0000-0000-c000-000000000046}/85b90003
PidLidPrivate http://schemas.microsoft.com/mapi/id/{00062008-0000-0000-c000-000000000046}/8506000b
PidLidRecallTime http://schemas.microsoft.com/mapi/id/{00062008-0000-0000-c000-000000000046}/85490040
PidLidVerbResponse http://schemas.microsoft.com/mapi/id/{00062008-0000-0000-c000-000000000046}/8524001f
PidLidResendTime http://schemas.microsoft.com/mapi/id/{00062013-0000-0000-c000-000000000046}/8d000040
PidLidImapDeleted http://schemas.microsoft.com/mapi/id/{00062008-0000-0000-c000-000000000046}/85700003
PidLidLogDocumentPosted http://schemas.microsoft.com/mapi/id/{0006200a-0000-0000-c000-000000000046}/8711000b
PidLidLogDocumentPrinted http://schemas.microsoft.com/mapi/id/{0006200a-0000-0000-c000-000000000046}/870e000b
PidLidLogDocumentRouted http://schemas.microsoft.com/mapi/id/{0006200a-0000-0000-c000-000000000046}/8710000b
PidLidLogDocumentSaved http://schemas.microsoft.com/mapi/id/{0006200a-0000-0000-c000-000000000046}/870f000b
PidLidLogDuration http://schemas.microsoft.com/mapi/id/{0006200a-0000-0000-c000-000000000046}/87070003
PidLidLogEnd http://schemas.microsoft.com/mapi/id/{0006200a-0000-0000-c000-000000000046}/87080040
PidLidLogFlags http://schemas.microsoft.com/mapi/id/{0006200a-0000-0000-c000-000000000046}/870c0003
PidLidLogStart http://schemas.microsoft.com/mapi/id/{0006200a-0000-0000-c000-000000000046}/87060040
PidLidLogType http://schemas.microsoft.com/mapi/id/{0006200a-0000-0000-c000-000000000046}/8700001f
PidLidLogTypeDesc http://schemas.microsoft.com/mapi/id/{0006200a-0000-0000-c000-000000000046}/8712001f
PidLidAllAttendeesString http://schemas.microsoft.com/mapi/id/{00062002-0000-0000-c000-000000000046}/8238001f
PidLidAppointmentAuxiliaryFlags http://schemas.microsoft.com/mapi/id/{00062002-0000-0000-c000-000000000046}/82070003
PidLidAppointmentCounterProposal http://schemas.microsoft.com/mapi/id/{00062002-0000-0000-c000-000000000046}/8257000b
PidLidAppointmentLastSequence http://schemas.microsoft.com/mapi/id/{00062002-0000-0000-c000-000000000046}/82030003
PidLidAppointmentNotAllowPropose http://schemas.microsoft.com/mapi/id/{00062002-0000-0000-c000-000000000046}/825a000b
PidLidAppointmentProposalNumber http://schemas.microsoft.com/mapi/id/{00062002-0000-0000-c000-000000000046}/82590003
PidLidAppointmentProposedDuration http://schemas.microsoft.com/mapi/id/{00062002-0000-0000-c000-000000000046}/82560003
PidLidAppointmentProposedEndWhole http://schemas.microsoft.com/mapi/id/{00062002-0000-0000-c000-000000000046}/82510040
PidLidAppointmentProposedStartWhole http://schemas.microsoft.com/mapi/id/{00062002-0000-0000-c000-000000000046}/82500040
PidLidAppointmentReplyName http://schemas.microsoft.com/mapi/id/{00062002-0000-0000-c000-000000000046}/8230001f
PidLidAppointmentReplyTime http://schemas.microsoft.com/mapi/id/{00062002-0000-0000-c000-000000000046}/82200040
PidLidAppointmentSequence http://schemas.microsoft.com/mapi/id/{00062002-0000-0000-c000-000000000046}/82010003
PidLidAppointmentSequenceTime http://schemas.microsoft.com/mapi/id/{00062002-0000-0000-c000-000000000046}/82020040
PidLidAppointmentStateFlags http://schemas.microsoft.com/mapi/id/{00062002-0000-0000-c000-000000000046}/82170003
PidLidAppointmentUnsendableRecipients http://schemas.microsoft.com/mapi/id/{00062002-0000-0000-c000-000000000046}/823d0102
PidLidAutoFillLocation http://schemas.microsoft.com/mapi/id/{00062002-0000-0000-c000-000000000046}/823a000b
PidLidCcAttendeesString http://schemas.microsoft.com/mapi/id/{00062002-0000-0000-c000-000000000046}/823c001f
PidLidChangeHighlight http://schemas.microsoft.com/mapi/id/{00062002-0000-0000-c000-000000000046}/82040003
PidLidFExceptionalAttendees http://schemas.microsoft.com/mapi/id/{00062002-0000-0000-c000-000000000046}/822b000b
PidLidFExceptionalBody http://schemas.microsoft.com/mapi/id/{00062002-0000-0000-c000-000000000046}/8206000b
PidLidFInvited http://schemas.microsoft.com/mapi/id/{00062002-0000-0000-c000-000000000046}/8229000b
PidLidForwardInstance http://schemas.microsoft.com/mapi/id/{00062002-0000-0000-c000-000000000046}/820a000b
PidLidIntendedBusyStatus http://schemas.microsoft.com/mapi/id/{00062002-0000-0000-c000-000000000046}/82240003
PidLidMeetingWorkspaceUrl http://schemas.microsoft.com/mapi/id/{00062002-0000-0000-c000-000000000046}/8209001f
PidLidOriginalStoreEntryId http://schemas.microsoft.com/mapi/id/{00062002-0000-0000-c000-000000000046}/82370102
PidLidResponseStatus http://schemas.microsoft.com/mapi/id/{00062002-0000-0000-c000-000000000046}/82180003
PidLidToAttendeesString http://schemas.microsoft.com/mapi/id/{00062002-0000-0000-c000-000000000046}/823b001f
PidLidNonSendableBcc http://schemas.microsoft.com/mapi/id/{00062008-0000-0000-c000-000000000046}/8538001f
PidLidNonSendableCc http://schemas.microsoft.com/mapi/id/{00062008-0000-0000-c000-000000000046}/8537001f
PidLidNonSendableTo http://schemas.microsoft.com/mapi/id/{00062008-0000-0000-c000-000000000046}/8536001f
PidLidAppointmentMessageClass http://schemas.microsoft.com/mapi/id/{6ed8da90-450b-101b-98da-00aa003f1305}/0024001f
PidLidAttendeeCriticalChange http://schemas.microsoft.com/mapi/id/{6ed8da90-450b-101b-98da-00aa003f1305}/00010040
PidLidCalendarType http://schemas.microsoft.com/mapi/id/{6ed8da90-450b-101b-98da-00aa003f1305}/001c0003
PidLidCleanGlobalObjectId http://schemas.microsoft.com/mapi/id/{6ed8da90-450b-101b-98da-00aa003f1305}/00230102
PidLidGlobalObjectId http://schemas.microsoft.com/mapi/id/{6ed8da90-450b-101b-98da-00aa003f1305}/00030102
PidLidIsException http://schemas.microsoft.com/mapi/id/{6ed8da90-450b-101b-98da-00aa003f1305}/000a000b
PidLidIsRecurring http://schemas.microsoft.com/mapi/id/{6ed8da90-450b-101b-98da-00aa003f1305}/0005000b
PidLidIsSilent http://schemas.microsoft.com/mapi/id/{6ed8da90-450b-101b-98da-00aa003f1305}/0004000b
PidLidMeetingType http://schemas.microsoft.com/mapi/id/{6ed8da90-450b-101b-98da-00aa003f1305}/00260003
PidLidOldLocation http://schemas.microsoft.com/mapi/id/{6ed8da90-450b-101b-98da-00aa003f1305}/0028001f
PidLidOldWhenEndWhole http://schemas.microsoft.com/mapi/id/{6ed8da90-450b-101b-98da-00aa003f1305}/002a0040
PidLidOldWhenStartWhole http://schemas.microsoft.com/mapi/id/{6ed8da90-450b-101b-98da-00aa003f1305}/00290040
PidLidOwnerCriticalChange http://schemas.microsoft.com/mapi/id/{6ed8da90-450b-101b-98da-00aa003f1305}/001a0040
PidLidTimeZone http://schemas.microsoft.com/mapi/id/{6ed8da90-450b-101b-98da-00aa003f1305}/000c0003
PidLidWhere http://schemas.microsoft.com/mapi/id/{6ed8da90-450b-101b-98da-00aa003f1305}/0002001f
PidLidReminderDelta http://schemas.microsoft.com/mapi/id/{00062008-0000-0000-c000-000000000046}/85010003
PidLidReminderFileParameter http://schemas.microsoft.com/mapi/id/{00062008-0000-0000-c000-000000000046}/851f001f
PidLidReminderOverride http://schemas.microsoft.com/mapi/id/{00062008-0000-0000-c000-000000000046}/851c000b
PidLidReminderPlaySound http://schemas.microsoft.com/mapi/id/{00062008-0000-0000-c000-000000000046}/851e000b
PidLidReminderSet http://schemas.microsoft.com/mapi/id/{00062008-0000-0000-c000-000000000046}/8503000b
PidLidReminderSignalTime http://schemas.microsoft.com/mapi/id/{00062008-0000-0000-c000-000000000046}/85600040
PidLidReminderTime http://schemas.microsoft.com/mapi/id/{00062008-0000-0000-c000-000000000046}/85020040
PidLidRemoteAttachment http://schemas.microsoft.com/mapi/id/{00062014-0000-0000-c000-000000000046}/8f07000b
PidLidRemoteEntryId http://schemas.microsoft.com/mapi/id/{00062014-0000-0000-c000-000000000046}/8f010102
PidLidRemoteMessageClass http://schemas.microsoft.com/mapi/id/{00062014-0000-0000-c000-000000000046}/8f02001f
PidLidRemoteSearchKey http://schemas.microsoft.com/mapi/id/{00062014-0000-0000-c000-000000000046}/8f060102
PidLidRemoteTransferSize http://schemas.microsoft.com/mapi/id/{00062014-0000-0000-c000-000000000046}/8f050003
PidLidRemoteTransferTime http://schemas.microsoft.com/mapi/id/{00062014-0000-0000-c000-000000000046}/8f040003
PidLidRemoteTransport http://schemas.microsoft.com/mapi/id/{00062014-0000-0000-c000-000000000046}/8f03001e
PidLidPostRssChannel http://schemas.microsoft.com/mapi/id/{00062041-0000-0000-c000-000000000046}/8904001f
PidLidPostRssChannelLink http://schemas.microsoft.com/mapi/id/{00062041-0000-0000-c000-000000000046}/8900001f
PidLidFormPropStream http://schemas.microsoft.com/mapi/id/{00062008-0000-0000-c000-000000000046}/851b0102
PidLidFormStorage http://schemas.microsoft.com/mapi/id/{00062008-0000-0000-c000-000000000046}/850f0102
PidLidFShouldTNEF http://schemas.microsoft.com/mapi/id/{00062008-0000-0000-c000-000000000046}/85a5000b
PidLidImageAttachmentsCompressionLevel http://schemas.microsoft.com/mapi/id/{00062008-0000-0000-c000-000000000046}/85930003
PidLidPageDirStream http://schemas.microsoft.com/mapi/id/{00062008-0000-0000-c000-000000000046}/85130102
PidLidPropertyDefinitionStream http://schemas.microsoft.com/mapi/id/{00062008-0000-0000-c000-000000000046}/85400102
PidLidScriptStream http://schemas.microsoft.com/mapi/id/{00062008-0000-0000-c000-000000000046}/85410102
PidLidSideEffects http://schemas.microsoft.com/mapi/id/{00062008-0000-0000-c000-000000000046}/85100003
PidLidSmartNoAttach http://schemas.microsoft.com/mapi/id/{00062008-0000-0000-c000-000000000046}/8514000b
PidLidUseTnef http://schemas.microsoft.com/mapi/id/{00062008-0000-0000-c000-000000000046}/8582000b
PidLidVerbStream http://schemas.microsoft.com/mapi/id/{00062008-0000-0000-c000-000000000046}/85200102
PidLidSharingCapabilities http://schemas.microsoft.com/mapi/id/{00062040-0000-0000-c000-000000000046}/8a170003
PidLidSharingConfigurationUrl http://schemas.microsoft.com/mapi/id/{00062040-0000-0000-c000-000000000046}/8a24001f
PidLidSharingFlavor http://schemas.microsoft.com/mapi/id/{00062040-0000-0000-c000-000000000046}/8a180003
PidLidSharingInitiatorEntryId http://schemas.microsoft.com/mapi/id/{00062040-0000-0000-c000-000000000046}/8a090102
PidLidSharingInitiatorName http://schemas.microsoft.com/mapi/id/{00062040-0000-0000-c000-000000000046}/8a07001f
PidLidSharingInitiatorSmtp http://schemas.microsoft.com/mapi/id/{00062040-0000-0000-c000-000000000046}/8a08001f
PidLidSharingLocalType http://schemas.microsoft.com/mapi/id/{00062040-0000-0000-c000-000000000046}/8a14001f
PidLidSharingProviderGuid http://schemas.microsoft.com/mapi/id/{00062040-0000-0000-c000-000000000046}/8a010102
PidLidSharingProviderName http://schemas.microsoft.com/mapi/id/{00062040-0000-0000-c000-000000000046}/8a02001f
PidLidSharingProviderUrl http://schemas.microsoft.com/mapi/id/{00062040-0000-0000-c000-000000000046}/8a03001f
PidLidSharingRemoteName http://schemas.microsoft.com/mapi/id/{00062040-0000-0000-c000-000000000046}/8a05001f
PidLidSharingRemoteStoreUid http://schemas.microsoft.com/mapi/id/{00062040-0000-0000-c000-000000000046}/8a48001f
PidLidSharingRemoteType http://schemas.microsoft.com/mapi/id/{00062040-0000-0000-c000-000000000046}/8a1d001f
PidLidSharingRemoteUid http://schemas.microsoft.com/mapi/id/{00062040-0000-0000-c000-000000000046}/8a06001f
PidLidSharingResponseTime http://schemas.microsoft.com/mapi/id/{00062040-0000-0000-c000-000000000046}/8a280040
PidLidSharingResponseType http://schemas.microsoft.com/mapi/id/{00062040-0000-0000-c000-000000000046}/8a270003
PidLidSpamOriginalFolder http://schemas.microsoft.com/mapi/id/{00062008-0000-0000-c000-000000000046}/859c0102
PidLidNoteColor http://schemas.microsoft.com/mapi/id/{0006200e-0000-0000-c000-000000000046}/8b000003
PidLidNoteHeight http://schemas.microsoft.com/mapi/id/{0006200e-0000-0000-c000-000000000046}/8b030003
PidLidNoteWidth http://schemas.microsoft.com/mapi/id/{0006200e-0000-0000-c000-000000000046}/8b020003
PidLidNoteX http://schemas.microsoft.com/mapi/id/{0006200e-0000-0000-c000-000000000046}/8b040003
PidLidNoteY http://schemas.microsoft.com/mapi/id/{0006200e-0000-0000-c000-000000000046}/8b050003
PidLidLinkedTaskItems http://schemas.microsoft.com/mapi/id/{00062002-0000-0000-c000-000000000046}/820c1102
PidLidFlagString http://schemas.microsoft.com/mapi/id/{00062008-0000-0000-c000-000000000046}/85c00003
PidLidTaskGlobalId http://schemas.microsoft.com/mapi/id/{00062008-0000-0000-c000-000000000046}/85190102
PidLidTaskMode http://schemas.microsoft.com/mapi/id/{00062008-0000-0000-c000-000000000046}/85180003
PidLidToDoOrdinalDate http://schemas.microsoft.com/mapi/id/{00062008-0000-0000-c000-000000000046}/85a00040
PidLidToDoSubOrdinal http://schemas.microsoft.com/mapi/id/{00062008-0000-0000-c000-000000000046}/85a1001f
PidLidToDoTitle http://schemas.microsoft.com/mapi/id/{00062008-0000-0000-c000-000000000046}/85a4001f
PidLidValidFlagStringProof http://schemas.microsoft.com/mapi/id/{00062008-0000-0000-c000-000000000046}/85bf0040
PidLidPercentComplete http://schemas.microsoft.com/mapi/id/{00062003-0000-0000-c000-000000000046}/81020005
PidLidTaskAcceptanceState http://schemas.microsoft.com/mapi/id/{00062003-0000-0000-c000-000000000046}/812a0003
PidLidTaskAccepted http://schemas.microsoft.com/mapi/id/{00062003-0000-0000-c000-000000000046}/8108000b
PidLidTaskActualEffort http://schemas.microsoft.com/mapi/id/{00062003-0000-0000-c000-000000000046}/81100003
PidLidTaskAssigner http://schemas.microsoft.com/mapi/id/{00062003-0000-0000-c000-000000000046}/8121001f
PidLidTaskAssigners http://schemas.microsoft.com/mapi/id/{00062003-0000-0000-c000-000000000046}/81170102
PidLidTaskComplete http://schemas.microsoft.com/mapi/id/{00062003-0000-0000-c000-000000000046}/811c000b
PidLidTaskDateCompleted http://schemas.microsoft.com/mapi/id/{00062003-0000-0000-c000-000000000046}/810f0040
PidLidTaskDeadOccurrence http://schemas.microsoft.com/mapi/id/{00062003-0000-0000-c000-000000000046}/8109000b
PidLidTaskDueDate http://schemas.microsoft.com/mapi/id/{00062003-0000-0000-c000-000000000046}/81050040
PidLidTaskEstimatedEffort http://schemas.microsoft.com/mapi/id/{00062003-0000-0000-c000-000000000046}/81110003
PidLidTaskFCreator http://schemas.microsoft.com/mapi/id/{00062003-0000-0000-c000-000000000046}/811e000b
PidLidTaskFFixOffline http://schemas.microsoft.com/mapi/id/{00062003-0000-0000-c000-000000000046}/812c000b
PidLidTaskFRecurring http://schemas.microsoft.com/mapi/id/{00062003-0000-0000-c000-000000000046}/8126000b
PidLidTaskHistory http://schemas.microsoft.com/mapi/id/{00062003-0000-0000-c000-000000000046}/811a0003
PidLidTaskLastDelegate http://schemas.microsoft.com/mapi/id/{00062003-0000-0000-c000-000000000046}/8125001f
PidLidTaskLastUpdate http://schemas.microsoft.com/mapi/id/{00062003-0000-0000-c000-000000000046}/81150040
PidLidTaskLastUser http://schemas.microsoft.com/mapi/id/{00062003-0000-0000-c000-000000000046}/8122001f
PidLidTaskMultipleRecipients http://schemas.microsoft.com/mapi/id/{00062003-0000-0000-c000-000000000046}/81200003
PidLidTaskOrdinal http://schemas.microsoft.com/mapi/id/{00062003-0000-0000-c000-000000000046}/81230003
PidLidTaskOwner http://schemas.microsoft.com/mapi/id/{00062003-0000-0000-c000-000000000046}/811f001f
PidLidTaskOwnership http://schemas.microsoft.com/mapi/id/{00062003-0000-0000-c000-000000000046}/81290003
PidLidTaskRecurrence http://schemas.microsoft.com/mapi/id/{00062003-0000-0000-c000-000000000046}/81160102
PidLidTaskResetReminder http://schemas.microsoft.com/mapi/id/{00062003-0000-0000-c000-000000000046}/8107000b
PidLidTaskStartDate http://schemas.microsoft.com/mapi/id/{00062003-0000-0000-c000-000000000046}/81040040
PidLidTaskState http://schemas.microsoft.com/mapi/id/{00062003-0000-0000-c000-000000000046}/81130003
PidLidTaskStatus http://schemas.microsoft.com/mapi/id/{00062003-0000-0000-c000-000000000046}/81010003
PidLidTaskStatusOnComplete http://schemas.microsoft.com/mapi/id/{00062003-0000-0000-c000-000000000046}/8119000b
PidLidTaskUpdates http://schemas.microsoft.com/mapi/id/{00062003-0000-0000-c000-000000000046}/811b000b
PidLidTaskVersion http://schemas.microsoft.com/mapi/id/{00062003-0000-0000-c000-000000000046}/81120003
PidLidCustomFlag http://schemas.microsoft.com/mapi/id/{00062008-0000-0000-c000-000000000046}/82510003

3. string 名前空間 (PidName~) 51

MAPI Property name Schemas
PidNameAcceptLanguage http://schemas.microsoft.com/mapi/string/{00020386-0000-0000-C000-000000000046}/Accept-Language
PidNameContentBase http://schemas.microsoft.com/mapi/string/{00020386-0000-0000-C000-000000000046}/Content-Base
PidNameContentClass http://schemas.microsoft.com/mapi/string/{00020386-0000-0000-C000-000000000046}/Content-Class
PidNameContentTransferEncoding http://schemas.microsoft.com/mapi/string/{00020386-0000-0000-C000-000000000046}/Content-Transfer-Encoding
PidNameContentType http://schemas.microsoft.com/mapi/string/{00020386-0000-0000-C000-000000000046}/Content-Type
PidNameCrossReference http://schemas.microsoft.com/mapi/string/{00020386-0000-0000-C000-000000000046}/Xref
PidNameXSharingCapabilities http://schemas.microsoft.com/mapi/string/{00020386-0000-0000-C000-000000000046}/X-Sharing-Capabilities
PidNameXSharingConfigUrl http://schemas.microsoft.com/mapi/string/{00020386-0000-0000-C000-000000000046}/X-Sharing-Config-Url
PidNameXSharingFlavor http://schemas.microsoft.com/mapi/string/{00020386-0000-0000-C000-000000000046}/X-Sharing-Flavor
PidNameXSharingLocalType http://schemas.microsoft.com/mapi/string/{00020386-0000-0000-C000-000000000046}/X-Sharing-Local-Type
PidNameXSharingProviderGuid http://schemas.microsoft.com/mapi/string/{00020386-0000-0000-C000-000000000046}/X-Sharing-Provider-Guid
PidNameXSharingProviderName http://schemas.microsoft.com/mapi/string/{00020386-0000-0000-C000-000000000046}/X-Sharing-Provider-Name
PidNameXSharingProviderUrl http://schemas.microsoft.com/mapi/string/{00020386-0000-0000-C000-000000000046}/X-Sharing-Provider-Url
PidNameXSharingRemoteName http://schemas.microsoft.com/mapi/string/{00020386-0000-0000-C000-000000000046}/X-Sharing-Remote-Name
PidNameXSharingRemoteStoreUid http://schemas.microsoft.com/mapi/string/{00020386-0000-0000-C000-000000000046}/X-Sharing-Remote-Store-Uid
PidNameXSharingRemoteType http://schemas.microsoft.com/mapi/string/{00020386-0000-0000-C000-000000000046}/X-Sharing-Remote-Type
PidNameXSharingRemoteUid http://schemas.microsoft.com/mapi/string/{00020386-0000-0000-C000-000000000046}/X-Sharing-Remote-Uid
PidNameApplicationName http://schemas.microsoft.com/mapi/string/{00020329-0000-0000-C000-000000000046}/AppName
PidNameAuthor http://schemas.microsoft.com/mapi/string/{00020329-0000-0000-C000-000000000046}/Author
PidNameByteCount http://schemas.microsoft.com/mapi/string/{00020329-0000-0000-C000-000000000046}/ByteCount
PidNameCategory http://schemas.microsoft.com/mapi/string/{00020329-0000-0000-C000-000000000046}/Category
PidNameCharacterCount http://schemas.microsoft.com/mapi/string/{00020329-0000-0000-C000-000000000046}/CharCount
PidNameComments http://schemas.microsoft.com/mapi/string/{00020329-0000-0000-C000-000000000046}/Comments
PidNameCompany http://schemas.microsoft.com/mapi/string/{00020329-0000-0000-C000-000000000046}/Company
PidNameCreateDateTimeReadOnly http://schemas.microsoft.com/mapi/string/{00020329-0000-0000-C000-000000000046}/CreateDtmRo
PidNameEditTime http://schemas.microsoft.com/mapi/string/{00020329-0000-0000-C000-000000000046}/EditTime
PidNameHiddenCount http://schemas.microsoft.com/mapi/string/{00020329-0000-0000-C000-000000000046}/HiddenCount
PidNameLastAuthor http://schemas.microsoft.com/mapi/string/{00020329-0000-0000-C000-000000000046}/LastAuthor
PidNameLastPrinted http://schemas.microsoft.com/mapi/string/{00020329-0000-0000-C000-000000000046}/LastPrinted
PidNameLastSaveDateTime http://schemas.microsoft.com/mapi/string/{00020329-0000-0000-C000-000000000046}/LastSaveDtm
PidNameLineCount http://schemas.microsoft.com/mapi/string/{00020329-0000-0000-C000-000000000046}/LineCount
PidNameManager http://schemas.microsoft.com/mapi/string/{00020329-0000-0000-C000-000000000046}/Manager
PidNameMultimediaClipCount http://schemas.microsoft.com/mapi/string/{00020329-0000-0000-C000-000000000046}/MMClipCount
PidNameNoteCount http://schemas.microsoft.com/mapi/string/{00020329-0000-0000-C000-000000000046}/NoteCount
PidNamePageCount http://schemas.microsoft.com/mapi/string/{00020329-0000-0000-C000-000000000046}/PageCount
PidNameParagraphCount http://schemas.microsoft.com/mapi/string/{00020329-0000-0000-C000-000000000046}/ParCount
PidNamePresentationFormat http://schemas.microsoft.com/mapi/string/{00020329-0000-0000-C000-000000000046}/PresFormat
PidNameRevisionNumber http://schemas.microsoft.com/mapi/string/{00020329-0000-0000-C000-000000000046}/RevNumber
PidNameSecurity http://schemas.microsoft.com/mapi/string/{00020329-0000-0000-C000-000000000046}/Security
PidNameSlideCount http://schemas.microsoft.com/mapi/string/{00020329-0000-0000-C000-000000000046}/SlideCount
PidNameSubject http://schemas.microsoft.com/mapi/string/{00020329-0000-0000-C000-000000000046}/Subject
PidNameTemplate http://schemas.microsoft.com/mapi/string/{00020329-0000-0000-C000-000000000046}/Template
PidNameTitle http://schemas.microsoft.com/mapi/string/{00020329-0000-0000-C000-000000000046}/Title
PidNameWordCount http://schemas.microsoft.com/mapi/string/{00020329-0000-0000-C000-000000000046}/WordCount
PidNameKeywords http://schemas.microsoft.com/mapi/string/{00020329-0000-0000-C000-000000000046}/Keywords
PidNameExchangeJunkEmailMoveStamp http://schemas.microsoft.com/exchange/junkemailmovestamp
PidNamePhishingStamp http://schemas.microsoft.com/outlook/phishingstamp
PidNameRightsManagementLicense http://schemas.microsoft.com/mapi/string/{00020329-0000-0000-C000-000000000046}/DRMLicense
PidNameAttachmentMacContentType http://schemas.microsoft.com/mapi/string/{96357F7F-59E1-47D0-99A7-46515C183B54}/AttachmentMacContentType
PidNameAttachmentMacInfo http://schemas.microsoft.com/mapi/string/{96357F7F-59E1-47D0-99A7-46515C183B54}/AttachmentMacInfo
PidNameAudioNotes http://schemas.microsoft.com/mapi/string/{4442858E-A9E3-4E80-B900-317A210CC15B}/UMAudioNotes
  1. これらをまとめて Outlook Item Objects と呼ぶ 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18

  2. Folderオブジェクトのみ UserDefineProperties

  3. ユーザーに対して表示または非表示にすることができる

  4. IMAPIProp::GetNamesFromIDsメソッド, IMAPIProp::GetIDsFromNamesメソッドにより名前で識別されるサービスプロバイダ

2
3
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
2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?