Skip to content

Page::Close method

The Close method releases any resources associated with the page.

Prototype

void Close()
void Close() throws IGRException;
def Close(self) -> void
void Close()

Additional Information

This method should be called when finished working with a page to release its resources. The method will be internally called when the instance itself is released. Calling this method on closed pages has no effect.

Resources can also be managed with the using IDisposable pattern in C#, or the try-with-resources pattern in Java.

See Also