Canvas::Close method¶
Close the canvas object, disposing of any resources.
Prototype¶
void Close()
void Close() throws IGRException;
def Close(self) -> void
void Close()
void Close()
HRESULT Close()
Additional Information¶
This method should be called when finished working on the canvas to release its resources. The method will be internally called when the instance itself is released. Calling this method on closed canvases has no effect.
Resources can also be managed with the using
IDisposable pattern in C#, or the try-with-resources
pattern in Java.