示例#1
0
 /// <summary>
 /// Removes a page from all connected devices
 /// </summary>
 /// <param name="pageNum">Page to be removed</param>
 public void RemovePage(int pageNum)
 {
     if (pages.Contains(pageNum))
     {
         foreach (IntPtr device in attachedDevices)
         {
             directOutput.RemovePage(device, pageNum);
             pages.Remove(pageNum);
         }
     }
 }