ES2Data.GetTags
public static string[] GetTags()
Returns
[table th=”0″]string[],“An array of the tags contained in this ES2Data.”[/table]
Description
Gets an array of tags contained in this ES2Data object.
C#
// 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
// 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();