This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Validation+ Script copied from: | |
* https://productforums.google.com/forum/#!topic/docs/pBDeCGqzlMI | |
* @author AD:AM | |
* | |
* | |
* Example how to use this: | |
* 1. Input the proper data validation to the top-most cell of a vertical group | |
* of cells (ie. one columnd-wide; as many rows as you want). | |
* 2. Select the group of cells, making sure the top cell is the one with data | |
* validation. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var file = await Windows.ApplicationModel.Package.Current.InstalledLocation.GetFileAsync(@"Assets\html\Template.html"); | |
var stream = await file.OpenReadAsync(); | |
var rdr = new StreamReader(stream.AsStream()); | |
Task.Run(() => | |
{ | |
var contents = rdr.ReadToEnd(); | |
}); |