up previous next
print the online manual to a file
H.OutManual(S:STRING):NULL
H.OutManual(S:STRING,P:INT):NULL
H.OutManual(S:STRING,P:INT,C:INT):NULL
H.OutManual(S:STRING,P:INT,C:INT,S:INT):NULL
|
This function prints sections of the manual to a text file named S.
Warning: if a file named S already exists, it is appended to. The
first form prints the entire manual to a file. The others are used to
print part P, chapter C, section S. Recall that the online help
consists of a manual *and* a list of commands. To print out the
commands, use
H.OutCommands
.
H.OutManual("part1.chp2",1,2);
|