/// <summary>
        /// Saves the Objects changes into the AiFile
        /// </summary>
        public void Save()
        {
            string fullPath = Path.Combine(Application.StartupPath, "Temp", FilePath);

            File.WriteAllText(fullPath, AiFileParser.ToFileFormat(this));
        }
 /// <summary>
 /// Returns all of this files objects into the Ai file format
 /// </summary>
 /// <returns></returns>
 public string GetParsedContents()
 {
     return(AiFileParser.ToFileFormat(this));
 }