API referenceRendering & Viewer

rasIsBusy

Report whether the page cache's background render/update

C
BOOL32 __stdcall rasIsBusy(IPGC CachePtr);
Delphi
function rasIsBusy(CachePtr: IPGC): LongBool; stdcall;

Purpose. Report whether the page cache's background render/update pipeline is currently busy.

Description. A plain accessor for C.Busy — set False by rasInitialize; this chapter did not trace every site that sets it True (the tile-render dispatch path, Rendering, Painting, and the Tile Pipeline), only confirmed the getter itself is a simple, real field read.

Parameters.

ParameterDescription
CachePtrTarget page cache.

Return value. Current Busy state; False if CachePtr doesn't resolve.

C# (P/Invoke)

wrappers/dotnet/LumasPdf.cs
[return: MarshalAs(UnmanagedType.Bool)]
Area
Rendering & Viewer
Category

Rasterizer/Rendering

Exported names

rasIsBusy

String variants

The …A form takes UTF-8, …W takes UTF-16; a bare name aliases the ANSI form.

See working code

Worked examples — complete programs in ten languages.