C# 클래스 PicoXLSX.Metadata

Class representing the meta data of a workbook
파일 보기 프로젝트 열기: rabanti-github/PicoXLSX 1 사용 예제들

공개 메소드들

메소드 설명
Metadata ( ) : System

Default constructor

ParseVersion ( int major, int minor, int build, int revision ) : string

Method to parse a common version (major.minor.revision.build) into the compatible format (major.minor). The minimum value is 0.0 and the maximum value is 99999.99999

The minor, revision and build number are joined if possible. If the number is to long, the additional characters will be removed from the right side down to five characters (e.g. 785563 will be 78556)

비공개 메소드들

메소드 설명
CheckVersion ( ) : void

Checks the format of the passed version string

메소드 상세

Metadata() 공개 메소드

Default constructor
public Metadata ( ) : System
리턴 System

ParseVersion() 공개 정적인 메소드

Method to parse a common version (major.minor.revision.build) into the compatible format (major.minor). The minimum value is 0.0 and the maximum value is 99999.99999

The minor, revision and build number are joined if possible. If the number is to long, the additional characters will be removed from the right side down to five characters (e.g. 785563 will be 78556)
Throws a FormatException if the major number is to long or one of the numbers is negative
public static ParseVersion ( int major, int minor, int build, int revision ) : string
major int Major number from 0 to 99999
minor int Minor number
build int Build number
revision int Revision number
리턴 string