The current frame rate.
Declaring type: Browser
Namespace: Vrml.EAI
Assembly: VrmlEAI.NET
Collapse/Expand Syntax
C#
public abstract float CurrentFrameRate { get; }
Property Value
The current frame rate, i.e. the rendering speed, in frames per second. This can be 0 when the browser does not support to provide this information.
Collapse/Expand Remarks
This is a read-only property.
Collapse/Expand Example
The following example prints the current frame rate to the console:
C#
Vrml.EAI.Browser browser = ...;
System.Console.WriteLine("Browser.CurrentFrameRate = " + browser.CurrentFrameRate);