Previous: 4.51.2.4.36. ogHLine() To the Table of Contents Next: 4.51.2.4.38. ogIsAntiAliasing()
4.51.2.4.36. ogHLine() Table of Contents 4.51.2.4.38. ogIsAntiAliasing()

- 4.51.2.4.37. -
Table of Contents
4. Standard Units
4.51. ObjGfx40 - ObjectGraphics 4.0 Unit
4.51.2. ObjGfx40 Unit Object Types
4.51.2.4. ogSurface object
4.51.2.4.37. ogInit()


4.51.2.4.37. ogInit()

Targets: MS-DOS, Win32 console


ObjGfx40 Unit

Calls the object's constructor

Declaration:
  constructor ogInit;
Remarks:

ogInit must be called before an ogSurface object may be used.

See also: Sample code:
{ogInit.pas}

uses
 ObjGfx40;

var 
  buf:^ogSurface;

begin
  new(buf, ogInit);
  dispose(buf, ogDone);
end.



Previous: 4.51.2.4.36. ogHLine() To the Table of Contents Next: 4.51.2.4.38. ogIsAntiAliasing()
4.51.2.4.36. ogHLine() Table of Contents 4.51.2.4.38. ogIsAntiAliasing()

- 4.51.2.4.37. -