Menu

#3 Missing property in TOpContactItem

open
nobody
None
5
2013-01-13
2005-07-13
Josef Fuchs
No

Hello,

I*ve recogniced that the following property of
TOpContactItem is missing. The Body is the Memo-
Field of outlook that is presented on the main Edit page.

--------SNIP-----

unit OpOutlk;

TOpContactItem = class(TOpOutlookItem)
.
.
property BillingInformation: string read
GetBillingInformation write SetBillingInformation;
property Body: string read GetBody write
SetBody; // Josef Fuchs
property Categories: string read GetCategories write
SetCategories;
.
end;

function TOpContactItem.GetBody: string;
begin
RESULT := FContactItem.Body
end;

procedure TOpContactItem.SetBody(const Value:
string);
begin
FContactItem.Body := Value;
end;

--------SNIP-----

Example:
MyOutlookContact.Body := MyMemoField.Text;

I'm sure you can add this lines

Sample

Discussion


Log in to post a comment.

MongoDB Logo MongoDB