Skip to content

AnalogVideoStandards

property, read-only

Delphi
property AnalogVideoStandards: string read GetAnalogVideoStandards;
C++Builder
__property System::UnicodeString AnalogVideoStandards = {read=GetAnalogVideoStandards};
C#
public string AnalogVideoStandards { get; }
VB.NET
Public ReadOnly Property AnalogVideoStandards As String
C++/Qt
wchar_t *GetAnalogVideoStandards ();

Used to retrieve a string that contains the list of the video standards available on the current video capture device when IsAnalogVideoDecoderAvailable returns true. The AnalogVideoStandard property is an index in this list, used to select the current analog video standard. This list is updated when the OnVideoDeviceSelected event occurs (when a video capture device is selected with VideoDevice). This list can be assigned to list based controls. E.g.: ComboBox1.Items.Text := VideoGrabber1.AnalogVideoStandards; ComboBox1.ItemIndex := VideoGrabber1.AnalogVideoStandard;