ScreenRecorderOnSpinningSelectionHandler Delegate |
OnSpinningSelectionHandler
Namespace:
CSScreenRecorder
Assembly:
CSScreenRecorder (in CSScreenRecorder.dll) Version: 1.0.4.0 (1.0.4.0)
Syntaxpublic delegate void OnSpinningSelectionHandler(
ScreenRecorder m,
bool Cancel,
int Top,
int Left,
int Width,
int Height
)
Public Delegate Sub OnSpinningSelectionHandler (
m As ScreenRecorder,
Cancel As Boolean,
Top As Integer,
Left As Integer,
Width As Integer,
Height As Integer
)
Dim instance As New OnSpinningSelectionHandler(AddressOf HandlerMethod)
type OnSpinningSelectionHandler =
delegate of
m : ScreenRecorder *
Cancel : bool *
Top : int *
Left : int *
Width : int *
Height : int -> unit
/** @delegate */
public delegate void OnSpinningSelectionHandler(
ScreenRecorder m,
boolean Cancel,
int Top,
int Left,
int Width,
int Height
)
JScript does not support delegates.
function(m, Cancel, Top, Left, Width, Height);
Parameters
- m
- Type: CSScreenRecorderScreenRecorder
- Cancel
- Type: SystemBoolean
- Top
- Type: SystemInt32
- Left
- Type: SystemInt32
- Width
- Type: SystemInt32
- Height
- Type: SystemInt32
See Also