MapiNamedProperty
Overview
MapiNamedProperty is a class in Aspose.Email FOSS for Python.
Identifier for a named MAPI property.
Properties
| Name | Type | Access | Description |
|---|---|---|---|
property_set | uuid.UUID | Read | Holds the UUID of the property set to which the named property belongs |
kind | str | Read | Indicates whether the named property is defined by a string name or numeric LID |
name | str | None | Read | Stores the textual name of the property when kind is string, otherwise None |
lid | int | None | Read | Stores the numeric identifier of the property when kind is numeric, otherwise None |
property_id | int | None | Read | Provides the computed property ID derived from kind, set and name or LID |
Methods
| Signature | Description |
|---|---|
string(name: str, property_set: uuid.UUID | str) → "MapiNamedProperty" | Creates a named property from a string name and a property set GUID |
numeric(lid: int, property_set: uuid.UUID | str) → "MapiNamedProperty" | Creates a named property from a numeric LID and a property set GUID |