Description
The Graphics Kernel is a descriptor of the underlying graphics system. Each kernel has its own set of capabilities, and AutoCAD will pick the appropriate kernel to use based on the requested capabilities. Graphics Kernels are reference counted, so be sure to call releaseGraphicsKernel() when you are done with the kernel.
Visual Basic
Public static Function AcquireGraphicsKernel( desc As KernelDescriptor ) As GraphicsKernel
C#
public static GraphicsKernel AcquireGraphicsKernel( KernelDescriptor desc );
Parameters
Parameters | Description |
---|---|
KernelDescriptor desc | A descriptor defining the required capabilities of the kernel. |
Returns
The Graphics Kernel object.