Indy 9
TIdVCard
Hierarchy, Properties, Methods, See Also, Unit: IdVCard
Implements an electronic business card.
TIdVCard = class(TIdBaseComponent)
Unit
IdVCard
Description
The TIdVCard component processes Virtual Cards which are electronic business cards through the ReadFromTStrings method. This component is compliant with the VCard specification:

  • vCard version 2.1 Specification (http://www.imc.org/pdi/vcard-21.txt)

and the VCard specification version 3.0:

  • RFC 2425 - A MIME Content-Type for Directory Information (http://www.rfc-editor.org/rfc/rfc2425.txt)

  • RFC 2426 - vCard MIME Directory Profile (http://www.rfc-editor.org/rfc/rfc2426.txt)

Creating VCards will be added at a later time.


TIdVCard.Addresses
TIdVCard
Represents a list of VCard addresses.
property Addresses: TIdVCardAddresses;
Description
Addresses represents the list of addresses for the VCard.

TIdVCard.BirthDay
TIdVCard
Represents the birthday the VCard owner.
property BirthDay: TDateTime;
Description
BirthDay represents the birthday, and optional time of birth, for the VCard owner.

TIdVCard.BusinessInfo
TIdVCard
Represents business information about the VCard owner.
property BusinessInfo: TIdVCardBusinessInfo;
Description
BusinessInfo represents business information about the VCard owner.

TIdVCard.Categories
TIdVCard
Represents a list of categories for the VCard.
property Categories: TStrings;
Description
Categories represents a list of categories for the VCard used for classification purposes.

TIdVCard.Classification
TIdVCard
Represents the general intent or keyword access for the VCard.
property Classification: String;
Description
Classification represents the general intent or keyword access for information in the VCard.

TIdVCard.Comments
TIdVCard
Textual comments for the VCard.
property Comments: TStrings;
Description
Comments is miscellaneous textual comments, or additional information, the owner wishes to attach to the VCard.

TIdVCard.EMailAddresses
TIdVCard
List of the VCard owner's E-Mail address.
property EMailAddresses: TIdVCardEMailAddresses;
Description
EMailAddresses is a list of the VCard owner's E-Mail address.

TIdVCard.EMailProgram
TIdVCard
E-Mail program used by the card's owner.
property EMailProgram: String;
Description
EMailProgram is the E-Mail program used by the card's owner.

TIdVCard.FullName
TIdVCard
VCard owner's name.
property FullName: TIdVCardName;
Description
FullName is the VCard owner's name.

TIdVCard.Key
TIdVCard
VCard owner's encryption key.
property Key: TIdVCardEmbeddedObject;
Description
Key is the VCard owner's encryption key used for encryption methods such as S/MIME or PGP.

TIdVCard.Logo
TIdVCard, See Also
Organization's logo.
property Logo: TIdVCardEmbeddedObject;
Description
Logo is a read-only TIdVCardEmbeddedObject that contains information aboput the image used as a logo for the Organization for the VCard owner.

TIdVCard.MailingLabels
TIdVCard, See Also
List of mailing labels for the VCard owner.
property MailingLabels: TIdVCardMailingLabels;
Description
MailingLabels is a read-only TIdVCardMailingLabels property that contains one or more mailing labels for the owner of the VCard.

TIdVCard.Photo
TIdVCard, See Also
VCard owner's photograph.
property Photo: TIdVCardEmbeddedObject;
Description
Photo is a read-only TIdVCardEmbeddedObject property that contains a photographic image of owner of the VCard.

TIdVCard.ProductID
TIdVCard, See Also
Program which created this VCard.
property ProductID: String;
Description
ProductID is a String property that represents the identifer for the product that creates the VCard instance.

TIdVCard.RawForm
TIdVCard, See Also
Raw data for the VCard.
property RawForm: TStrings;
Description
RawForm is a read-only TStrings property tha is the container used to store the raw data for the VCard object intance.

TIdVCard.Sound
TIdVCard, See Also
Sound file for the VCard.
property Sound: TIdVCardEmbeddedObject;
Description
Sound is a read-only TIdVCardEmbeddedObject property that indicates an audio file associated with the VCard, such as how to pronounce a VCard owner's name.

TIdVCard.Telephones
TIdVCard, See Also
List of the VCard owner's telephone numbers.
property Telephones: TIdVCardTelephones;
Description
Telephones is a read-only TIdVCardTelephones property that represents one or more telephone numbers for the owner of the VCard.

TIdVCard.UniqueID
TIdVCard, See Also
Unique identifier for the VCard.
property UniqueID: String;
Description
UniqueID is a String property that represents the uniqueness identifier, or UID, for the VCard object instance. UniqueID is updated when variables are updated from raw VCard data.

TIdVCard.URLs
TIdVCard, See Also
URLs for the VCard owner or organization.
property URLs: TStrings;
Description
URLs is a TStrings property that represents the Universal Resource Locators associated with the VCard. URLs are used to represent a URI with additional information for the the person or the organization web page.

TIdVCard.VCardVersion
TIdVCard, See Also
Version number of the VCard specification.
property VCardVersion: Real;
Description
VCardVersion is the version number of the VCard specification used in creating and storing the data for the VCard instance.

TIdVCard.Create
TIdVCard, See Also
Creates a new VCard instance.
constructor Create(AOwner: TComponent); override;
Description
Create is the constructor for TIdVCard object instance. Create initializes the object properties for the new VCard instance.

TIdVCard.Destroy
TIdVCard
Frees a VCard instance.
destructor Destroy; override;
Description
Destroy is the destructor for TIdVCard, and clears a fress object properties for the VCard instance.

TIdVCard.ReadFromTStrings
TIdVCard, See Also
Reads a VCard from a TStrings object.
procedure ReadFromTStrings(s: TStrings);
Parameters
s: TStrings
TStrings used as a source for VCard data.
Description
ReadFromTStrings is a procedure used to read the contents for a VCard from a TStrings object instance. ReadFromTStrings clears the raw values stored for the VCard instance, and reads all values between the BEGIN:VCARD and END:VCARD in the string list in s. ReadFromTStrings sets the properyty values for the VCard instance after loading the raw data for the VCard.

Created with Doc-O-Matic 2 donated to Project JEDI. Commercial license available from the Doc-O-Matic site.