VideoWindowHeight Property

Summary
Gets the height of the video window.
Syntax
C#
C++/CLI
public virtual float VideoWindowHeight { get; } 
public: 
virtual property float VideoWindowHeight { 
   float get(); 
} 

Property Value

A value representing the video window height.

Remarks

The value is in the units specified by the ScaleMode property.

Example
C#
using Leadtools; 
using Leadtools.MediaFoundation; 
using LeadtoolsMediaFoundationExamples.Fixtures; 
 
 
public bool _result = false; 
public CaptureCtrlForm _form = new CaptureCtrlForm(); 
 
// capture control 
CaptureCtrl capturectrl; 
 
// output file 
string outFile = Path.Combine(LEAD_VARS.MediaDir, "CaptureCtrl_VideoWindowHeightExample.avi"); 
 
public void VideoWindowHeightExample() 
{ 
   // reference the capture control 
   capturectrl = _form.CaptureCtrl; 
 
   // video window height 
   Single Height = 0; 
 
   try 
   { 
      // set the source video device, select using your device name here 
      if (capturectrl.VideoDevices["USB"] == null) 
      { 
         throw new Exception("No USB video device available"); 
      } 
 
      capturectrl.VideoDevices["USB"].Selected = true; 
 
 
      // set the target output file 
      capturectrl.TargetFile = outFile; 
 
      if (capturectrl.IsModeAvailable(CaptureMode.Video)) 
      { 
         // enable the preview 
         capturectrl.Preview = true; 
 
         // get the video window height 
         Height = capturectrl.VideoWindowHeight; 
 
         // set the result to what we expect 
         _result = (Height != 0); 
      } 
   } 
   catch (COMException) 
   { 
      _result = false; 
   } 
   catch (Exception) 
   { 
      _result = false; 
   } 
} 
 
static class LEAD_VARS 
{ 
   public const string MediaDir = @"C:\LEADTOOLS22\Media"; 
} 
Requirements

Target Platforms

Help Version 22.0.2022.12.7
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.MediaFoundation Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.