我有一项任务要做,我必须配置VLC播放器以显示音频/视频内容。 一切正常,但现在我必须设置视频速度和适合窗口选项,同时将内容分配给VLControl。我搜索了很多,但我找不到任何与此LIB相关的帮助。
现在我想知道vlcControl.MediaPlayer.Play()函数中的Option参数是什么?
Excel.Application xlApp = null;
Excel.Workbook xlWorkBook = null;
Excel.Worksheet xlWorkSheet = null;
Excel.Range xlrange = null;
string sCurrentDir = Directory.GetCurrentDirectory();
xlApp = new Excel.Application();
xlWorkBook = xlApp.Workbooks.Open(sCurrentDir + @"\Res\res.xlsx", 0, true, 5, "", "", true, Microsoft.Office.Interop.Excel.XlPlatform.xlWindows, "\t", false, 0, true, 1, 0);
xlWorkSheet = (Excel.Worksheet)xlWorkBook.Worksheets.get_Item(1);
xlrange = xlWorkSheet.UsedRange;
xlrange.AutoFilter(5, "4", Excel.XlAutoFilterOperator.xlFilterValues, Type.Missing, true);
Excel.Range filteredRange = xlrange.SpecialCells(Excel.XlCellType.xlCellTypeVisible, Excel.XlSpecialCellsValue.xlTextValues);
MessageBox.Show(filteredRange.Rows.Count.ToString());
在Play()函数中发送的字符串关键字选项有哪些?是否有任何链接可以找到所有相关的关键字?