Returns the height of the image.
Declaring type: EventOutSFImage
Namespace: Vrml.EAI.Field
Assembly: VrmlEAI.NET
Collapse/Expand Syntax
C#
public abstract int GetHeight ()
Return Value
The height of the image, in pixels.
Collapse/Expand Example
The following example demonstrates how to get the height of an image:
C#
Vrml.EAI.Node pixelTexture = ...;
Vrml.EAI.Field.EventOutSFImage image_changed = (Vrml.EAI.Field.EventOutSFImage)pixelTexture.GetEventOut("image_changed");
System.Console.WriteLine("height = " + image_changed.GetHeight() + " pixels");