VideoWindowSizeMode Property

Summary
Gets or sets the current video window size mode.
Syntax
C#
C++/CLI
public virtual SizeMode VideoWindowSizeMode { get; set; } 
public: 
virtual property SizeMode VideoWindowSizeMode { 
   SizeMode get(); 
   void set (    SizeMode ); 
} 

Property Value

A SizeMode value representing the video window size mode. the default value is SizeMode.Fit.

Remarks

The default size mode is SizeMode.Fit. Assignment can raise an error exception. For more information, refer to the Error Codes.

Example
C#
using Leadtools; 
using Leadtools.Multimedia; 
using LeadtoolsMultimediaExamples.Fixtures; 
 
 
public bool _result = false; 
public PlayCtrlForm _form = new PlayCtrlForm(); 
 
public void VideoWindowExample() 
{ 
   // reference the play control 
   PlayCtrl playctrl = _form.PlayCtrl; 
 
   // input file 
   string inFile = Path.Combine(LEAD_VARS.MediaDir, "PlayCtrl_Source.avi"); 
 
   try 
   { 
      // turn off auto start 
      playctrl.AutoStart = false; 
 
      // set the source file 
      playctrl.SourceFile = inFile; 
 
      // get the video window handle 
      IntPtr handle = playctrl.VideoWindow; 
 
      // get the video and video window info 
      float vwt = playctrl.VideoWindowTop; 
      float vwl = playctrl.VideoWindowLeft; 
      float vwh = playctrl.VideoWindowHeight; 
      float vww = playctrl.VideoWindowWidth; 
      float vh = playctrl.VideoHeight; 
      float vw = playctrl.VideoWidth; 
 
      ScaleMode scm = playctrl.ScaleMode; 
      float sch = playctrl.ScaleHeight; 
      float scw = playctrl.ScaleWidth; 
      float sct = playctrl.ScaleTop; 
      float scl = playctrl.ScaleLeft; 
 
      SizeMode sm = playctrl.VideoWindowSizeMode; 
      bool isFullScreen = playctrl.FullScreenMode; 
 
      // check sizes for sizemode setting 
      if (vw > vww && vh > vwh && sm != SizeMode.Fit) 
         playctrl.VideoWindowSizeMode = SizeMode.Fit; 
      else if (vw < vww && vh < vwh) 
         playctrl.VideoWindowSizeMode = SizeMode.Stretch; 
 
      // set the play control to cover the form's client area 
      playctrl.SetVideoWindowPos(0, 0, this._form.ClientSize.Width, this._form.ClientSize.Height); 
 
      // set the result to what we expect 
      _result = (handle != null); 
 
      // run the video 
      playctrl.Run(); 
   } 
   catch (Exception) 
   { 
      _result = false; 
   } 
 
   // we'll loop on the state and pump messages for this example. 
   // but you should not need to if running from a Windows Forms application. 
   while (playctrl.State == PlayState.Running) 
      Application.DoEvents(); 
} 
 
static class LEAD_VARS 
{ 
   public const string MediaDir = @"C:\LEADTOOLS22\Media"; 
} 
Requirements

Target Platforms

See Also

Reference

PlayCtrl Class

PlayCtrl Members

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

Leadtools.Multimedia Assembly

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