/// <summary>
 /// Take a snapshot of the current video window.
 /// </summary>
 /// <param name="path">The path of a file or a folder to save the screenshot into</param>
 public void TakeSnapShot(string path)
 {
     if (_playerObj != IntPtr.Zero)
     {
         _wrapper.ExpandedVideoTakeSnapshot(_playerObj, 0, path, 0, 0);
     }
 }