IAuditOperations.Comment

Syntax

Comment: String;

Description

The Comment property returns a note to an operation on the object.

Example

Sub Main;

Var

MB: IMetabase;

MS: IMetabaseSecurity;

AL: IAuditLog;

ALogon: IAuditLogons;

Operat: IAuditOperations;

s: String;

Begin

MB:=MetabaseClass.Active;

MS:=MB.Security;

Al:=MS.OpenAuditLog;

ALogon:= AL.OpenLogons(False);

ALogon.Next;

Operat:=Al.OpenOperations(ALogon.Session);

s:=Operat.Comment;

End Sub Main;

After executing the example the "S" variable contains a note to the last operation on the object.

See also:

IAuditOperations