/// <summary>
 /// Returns true if the type is a simple convertable value from a string.
 /// And sets the converter to the metho that will convert a string to this required type.
 /// If not its null and false.
 /// </summary>
 /// <param name="type"></param>
 /// <param name="convert"></param>
 /// <returns></returns>
 public static bool IsSimpleObjectType(Type type, out PDFValueConverter convert)
 {
     return(ConvertObjects.IsSimpleObjectType(type, out convert));
 }