SplitCameraSettings Constructor |
Namespace:
Ozeki.Camera
Assembly:
OzekiSDK (in OzekiSDK.dll) Version: 10.3.199.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
- Type: System.Collections.GenericListKeyValuePairICamera, IVideoSender
- width (Optional)
- Type: SystemInt32
- height (Optional)
- Type: SystemInt32
- rows (Optional)
- Type: SystemInt32
- columns (Optional)
- Type: SystemInt32
- crop (Optional)
- Type: SystemBoolean
See Also