Options
All
  • Public
  • Public/Protected
  • All
Menu

Index

Functions

  • getLcidToAnsiCodePages(): {}
  • Obtain a copy of a table to convert from LCID to ANSICodePage list.

    e.g.

    • lcidToAnsiCodePages[0x0409] will return [1252] (en-US)
    • lcidToAnsiCodePages[0x0411] will return [932] (ja-JP)

    Returns {}

    • [key: number]: number[]
  • getProps(): { area: string; key: string; name: string }[]
  • Obtain a copy of list of some known property tags.

    e.g.

    [
    ...,
    {
    "area": "General Message Properties",
    "key": "0037001F",
    "name": "PidTagSubject"
    },
    ...
    ]

    Returns { area: string; key: string; name: string }[]

  • getTypeNames(): {}
  • Obtain a copy of a table for mapping from property type value to property type name.

    e.g.

    • typeNames[0x0003] returns "PtypInteger32".
    • typeNames[0x001E] returns "PtypString8".
    • typeNames[0x001F] returns "PtypString".
    • typeNames[0x0102] returns "PtypBinary".
    see

    [MS-OXCDATA]: Property Data Types | Microsoft Docs

    Returns {}

    • [key: number]: string

Generated using TypeDoc