private void DeleteAllCommentOfElement(Element element)
 {
     foreach (Comment commentOfImage in element.commentCollection)
     {
         CommentFunctions.DeleteComment(commentOfImage);
     }
 }