IAuditFiltersContainer.FileName

Syntax

FileName: String;

Description

The FileName property determines the file name from which container was loaded from.

Example

Sub Main;

Var

FilCon: IAuditFiltersContainer;

Begin

FilCon := New AuditFiltersContainer.Create;

FilCon.Load;

Debug.WriteLine(FilCon.FileName);

End Sub Main;

After executing the example, a name of the file, from which the container was loaded, is displayed in a console window.

See also:

IAuditFiltersContainer