AviCompressor.PropertyPageAvailable Property

Returns True, if the AviCompressor has a property page, otherwise False.
Syntax:
[C#]
public bool PropertyPageAvailable;
Limitations:

Read only.

Sample:

This example shows how to enable/disable a button that calls the property page of the first avi compressor:

[C#]
AviCompressor AviComp = AviCompressor.AviCompressors[0]; cmdShowPropertyPage.Enabled = AviComp.PropertyPageAvailable;

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

See Also: AviCompressor, AviCompressor.ShowPropertyPage

<< AviCompressor