home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD1.mdf
/
pascal
/
library
/
dos
/
mailpro
/
coloriu.pas
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
1988-08-23
|
340 b
|
21 lines
unit ColorIU;
interface
uses FastWr;
procedure ColorIn( X1,Y1,X2,Y2: integer; Attr: byte);
implementation
procedure ColorIn;
var Lngth: word;
Row: integer;
begin
Lngth := X2 - X1 + 1;
for Row := Y1 to Y2 do
begin
ChangeAttribute(Lngth, Row, X1, Attr);
end;
end;
end.