Applies To
All
Purpose
Sets or returns the DIO file author’s name.
Syntax
Object.Author [ = sAuthor ]
[sAuthor = ] Object.Author
The Author property syntax has the following parts:
Name |
Type |
Description |
Object |
DioFile |
DioFile object |
sAuthor |
String |
The DIO file authors' name. Default is NULL. |
Example
The following example creates new file and sets the authors' name:
Set diofile = CreateObject("GTDio.DioFile")
diofile.Open (2, “NewFile.dio”, dioBoardTypeGT2550)
diofile.Author="John Smith"
See Also