Created
May 5, 2018 16:22
-
-
Save mizuneko/d4c72ef22c72e4153cbe0e435f4e0b54 to your computer and use it in GitHub Desktop.
[cmをinchに変換]ClosedXMLで余白などの指定をするときはインチ指定しなければならない。 #ClosedXML #ExtensionMethod
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static decimal ToInch(this decimal x) | |
{ | |
return x * 0.39370; | |
} | |
public static decimal ToCm(this decimal x) | |
{ | |
return x * 2.54 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment