HicFileName
Object for HiCAD file name.
This object can be used to convert file names in HiCAD conventions (c:abc.sze) into operating system file names.
|
|
|
FUNC |
COM |
SF |
---|---|---|---|---|---|
Empty |
Is the file name empty? |
bool Empty( ) |
1211.1 |
1211.2 |
+ |
Exists |
Does the file exist? |
bool Exists ( ) |
1211.1 |
1211.2 |
+ |
Clear |
Clears the file name. |
void Clear ( ) |
1211.1 |
1211.2 |
+ |
Set |
Sets the file name. |
void Set (String fileName) |
1211.1 |
1211.2 |
+ |
GetOSName |
Provides the file name in operating system conventions. |
String GetOSName ( ) |
1211.1 |
1211.2 |
+ |
Example HicFileName
START 59
rem convert Hicad-file name into operating system file name
FUNC delete filename
FUNC HicFileName filename
FUNC filename.Set ("c:quader.FMV")
FUNC $n:= filename.GetOSName ()
END