AutoFileNameDateTimeFormat
property
Delphi
property AutoFileNameDateTimeFormat: string read GetAutoFileNameDateTimeFormat write SetAutoFileNameDateTimeFormat;
C++Builder
__property System::UnicodeString AutoFileNameDateTimeFormat = {read=GetAutoFileNameDateTimeFormat, write=SetAutoFileNameDateTimeFormat};
C#
public string AutoFileNameDateTimeFormat { get; set; }
VB.NET
Public Property AutoFileNameDateTimeFormat As String
C++/Qt
wchar_t *GetAutoFileNameDateTimeFormat ();
void SetAutoFileNameDateTimeFormat (wchar_t *Value);
Specify the date/time format for recording file name
Remarks
Lets customize the date/time format when the recording file names are generated automatically and AutoFileName is set to fn_DateTime
By default the date/time format of the file names is:
yymmdd_hhmmss_zzzBy default AutoFilePrefix is set to "vg" (default), so the recording file name is e.g. vg130213_151847_352.avi By example if customizing it as follows:
VideoGrabber.AutoFileName = fn_DateTime;
VideoGrabber.AutoFileNameDateTimeFormat = "dd-mm-yy_hh-mm-ss"
VideoGrabber.AutoFilePrefix = "file_"
the recording file name will be file_13-02-13_15-27-45.avi