ICImagingControl.LiveDisplayHeight Property

Returns or sets the height of the video display window.
Syntax:
[C#]
public int LiveDisplayHeight;
Remarks:

The LiveDisplayHeight property is used to set a new height for the display window of the live video. If LiveDisplayHeight is set to a value different from the video format's height, the video image is distorted.

If the LiveDisplayHeight and the LiveDisplayWidth properties are changed, but the video image's ratio is preserved, the live video appears to be zoomed in or out. With these properties, the live video image can be fitted into IC Imaging Control's window.

Passing a value to LiveDisplayHeight takes only an effect, if the LiveDisplayDefault property was set to False. If the LiveDisplayDefault property is set to True, the LiveDisplayHeight property's value is reset to the video formats height.

The LiveDisplayHeight property's unit is pixel.

Sample:

This example demonstrates how to fit the live video display in IC Imaging Control's window.

[C#]
// Disable the default values of the live display. ICImagingControl1.LiveDisplayDefault = false; // Set the width and height of the live video display to // the width and height of IC Imaging Control. Now, the // live video image fits into IC Imaging Control's window. ICImagingControl1.LiveDisplayHeight = ICImagingControl1.Height; ICImagingControl1.LiveDisplayWidth = ICImagingControl1.Width; // Start the live video to see the result. ICImagingControl1.LiveStart();
See also: ICImagingControl, ICImagingControl.LiveDisplayDefault, ICImagingControl.LiveDisplayLeft, ICImagingControl.LiveDisplayTop, ICImagingControl.LiveDisplayWidth, ICImagingControl.LiveDisplayZoomFactor, ICImagingControl.ScrollBarsEnabled

<< ICImagingControl