Call this member function to retrieve the title of a specified file.

syntaxSyntax:
DlxFile.GetFileTitle()

Return Value

If successful, it returns the file title otherwise it returns an empty string.

Example

  Copy codeCopy code
var file = new DlxFile("demofile.txt");
DlxApp.Printf(file.GetFilePath());
DlxApp.Printf(file.GetFileFolder());
DlxApp.Printf(file.GetFileName());
DlxApp.Printf(file.GetFileTitle());
DlxApp.Printf(file.GetFileExt());

See also