ES2Data.GetTags
Returns
string[] | "An array of the tags contained in this ES2Data." |
Description
Gets an array of tags contained in this ES2Data object.
C#
1 2 3 4 5 |
// Use ES2Data to load all of the data from a file. ES2Data es2data = ES2.LoadAll("myFile.txt"); // Get an array of the tags in this ES2Data. string[] tags = es2data.GetTags(); |
JS
1 2 3 4 5 |
// Use ES2Data to load all of the data from a file. var es2data : ES2Data = ES2.LoadAll("myFile.txt"); // Get an array of the tags in this ES2Data. var tags : string[] = es2data.GetTags(); |