Advertisement
Guest User

Untitled

a guest
Nov 24th, 2014
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. switch (extension)
  2. {
  3. case "DOCX":
  4. options.ContentType = "application/vnd.ms-word.document.12";
  5. break;
  6. case "EXCEL":
  7. options.ContentType = "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet";
  8. break;
  9. case "PPT":
  10. options.ContentType = "application/vnd.openxmlformats-officedocument.presentationml.presentation";
  11. break;
  12. case "PDF":
  13. options.ContentType = "application/pdf";
  14. break;
  15. }
  16.  
  17. await Windows.System.Launcher.LaunchUriAsync(uri, options);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement