SplitCameraSettings Constructor |
Namespace: Ozeki.CameraAssembly: OzekiSDK (in OzekiSDK.dll) Version: 10.4.13.0
Syntaxpublic SplitCameraSettings(
List<KeyValuePair<ICamera, IVideoSender>> sources,
int width = 640,
int height = 480,
int rows = 1,
int columns = 1,
bool crop = false
)
Public Sub New (
sources As List(Of KeyValuePair(Of ICamera, IVideoSender)),
Optional width As Integer = 640,
Optional height As Integer = 480,
Optional rows As Integer = 1,
Optional columns As Integer = 1,
Optional crop As Boolean = false
)
public:
SplitCameraSettings(
List<KeyValuePair<ICamera^, IVideoSender^>>^ sources,
int width = 640,
int height = 480,
int rows = 1,
int columns = 1,
bool crop = false
)
new :
sources : List<KeyValuePair<ICamera, IVideoSender>> *
?width : int *
?height : int *
?rows : int *
?columns : int *
?crop : bool
(* Defaults:
let _width = defaultArg width 640
let _height = defaultArg height 480
let _rows = defaultArg rows 1
let _columns = defaultArg columns 1
let _crop = defaultArg crop false
*)
-> SplitCameraSettings
Parameters
- sources ListKeyValuePairICamera, IVideoSender
-
- width Int32 (Optional)
-
- height Int32 (Optional)
-
- rows Int32 (Optional)
-
- columns Int32 (Optional)
-
- crop Boolean (Optional)
-
See Also