AviCompressor.Name Property

Returns the name of the AviCompressor
Syntax:
[C#]
public string Name;
Limitations:

Read only.

Sample:

This example starts an avi capture with the first compressor in the collection:

[C#]
// Get the first available AviCompressor. AviCompressor AviComp = AviCompressor.AviCompressors[0]; // Start capturing with the target file and the name of the // previously selected AviCompressor. ICImagingControl1.AviStartCapture("test.avi", AviComp.Name);

How to use avi compressors is shown in the Capturing an AVI File sample.

See Also: AviCompressor, AviCompressor.ToString

<< AviCompressor