We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I noticed that if you specify FONT size="9.5pt" this is converted to a font size of 9 in Word, instead of 9,5
I suggest a small change to correct for this in Unit.cs:
public double ValueInPoint { get { return (double) (type == UnitMetric.Point ? Math.Round(this.value * 2) / 2 : (float) valueInEmus / 12700L); } }
The text was updated successfully, but these errors were encountered:
Consider non integer font-size #129
547e663
I have committed this code. Thanks for reporting
Sorry, something went wrong.
No branches or pull requests
I noticed that if you specify FONT size="9.5pt" this is converted to a font size of 9 in Word, instead of 9,5
I suggest a small change to correct for this in Unit.cs:
The text was updated successfully, but these errors were encountered: