Guardian Procedure Calls Reference Manual (G06.25+)
Guardian Procedure Calls (D-E)
Guardian Procedure Calls Reference Manual—522629-013
4-55
DELETEEDIT Procedure
is the number that identifies the open file from which lines are to be deleted.
first input
INT(32):value
specifies 1000 times the line number of the first line in the range of lines to be
deleted. If a negative value is specified, the line number of the first line in the file is
used.
last input
INT(32):value
specifies 1000 times the line number of the last line in the range of lines to be
deleted. If a negative value is specified, the line number of the last line in the file is
used.
Example
In the following example, DELETEEDIT deletes lines 50 through 100 from the specified
file.
INT(32) first := 50000D;
INT(32) last := 100000D;
.
.
err := DELETEEDIT ( filenumber, first, last );
Related Programming Manual
For programming information about the DELETEEDIT procedure, refer to the Guardian
Programmer’s Guide.