RecordingSize
Delphi
property RecordingSize: TRecordingSize read GetRecordingSize write SetRecordingSize default DEF_RecordingSize;
C++Builder
__property TRecordingSize RecordingSize = {read=GetRecordingSize, write=SetRecordingSize, default=0};
C#
public TRecordingSize RecordingSize { get; set; }
VB.NET
Public Property RecordingSize As TRecordingSize
C++/Qt
TRecordingSize GetRecordingSize ();
void SetRecordingSize (TRecordingSize Value);
Used to record at a smaller size than the preview size
Remarks
Used to record in AVI at a smaller size than the preview size. By default, the recording is made at the same size than the preview size.
Possible values:
rs_Default: records at the current video size rs_HalfSize: records at half size rs_QuarterSize: records at quarter size
This property makes it possible to record smaller at a smaller size, while keeping an higher resolution for frame capture.
E.g. if the current preview size is 640x480 and RecordingSize = HalfSize, the AVI recording will be mad in 320x240.