Group
Show / Hide Table of Contents

Class GradePointAverage

Information about a GPA (or equivalent)

Inheritance
System.Object
GradePointAverage
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Textkernel.Tx.Models.Resume.Education
Assembly: Textkernel.Tx.SDK.dll
Syntax
public class GradePointAverage

Properties

| Improve this Doc View Source

MaxScore

The max score in the ScoringSystem

Declaration
public string MaxScore { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

MinimumScore

The minimum score in the ScoringSystem

Declaration
public string MinimumScore { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

NormalizedScore

The Score, normalized to a 0.0-1.0 scale, with 1.0 being the top mark. This takes into account different min/max values and whether high or low numbers are ranked higher.This makes it possible/valid to compare GPAs across various scales.
For example:
- USA degree with GPA of 3.5 / 4.0 = 0.875
- German degree with 1.5 / 6.0 = 0.916

Declaration
public decimal NormalizedScore { get; set; }
Property Value
Type Description
System.Decimal
| Improve this Doc View Source

Score

The score found in the resume

Declaration
public string Score { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

ScoringSystem

The scoring system used on the resume

Declaration
public string ScoringSystem { get; set; }
Property Value
Type Description
System.String
  • Improve this Doc
  • View Source
☀
☾
In This Article
Back to top
Generated by DocFX
☀
☾