9.1.7. fileProfiles

string  fileProfiles();

Gibt die Titel der aktiven Dateiprofile zurück. Die Angaben sind durch Kommas voneinander getrennt. Ist in dem Pfad ein Leerzeichen enthalten, wird die Angabe von zwei Anführungszeichen umschlossen.

Beispiel 9.5. Macro: Abfragen der Dateiprofile

s = application.fileProfiles();
a = s.split(",");
for(x = 0; x < a.length; x++) {
  application.ShowMessage(a[x]);
}