/// <summary>
                /// Retrieves the API data for the font with the given name.
                /// </summary>
                private static FontMembers?GetApiFont(string name)
                {
                    IFont font = GetFont(name);

                    return(font?.GetApiData());
                }