http://www.emgu.com
Starts the event loop for a given time.
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.3.0.2824 (3.3.0.2824)
Syntaxpublic void SpinOnce(
int time = 1,
bool forceRedraw = false
)
Public Sub SpinOnce (
Optional time As Integer = 1,
Optional forceRedraw As Boolean = false
)
public:
void SpinOnce(
int time = 1,
bool forceRedraw = false
)
member SpinOnce :
?time : int *
?forceRedraw : bool
(* Defaults:
let _time = defaultArg time 1
let _forceRedraw = defaultArg forceRedraw false
*)
-> unit
Parameters
- time (Optional)
- Type: SystemInt32
Amount of time in milliseconds for the event loop to keep running. - forceRedraw (Optional)
- Type: SystemBoolean
If true, window renders.
See Also