[Properties (by Name)] [Methods (by Name)] [Events (by Name)]
Represents a Free Pascal version number
Source position: fpmkunit.pp line 438
type TFPVersion = class(TPersistent) |
||
public |
||
procedure Clear; |
|
Clear the version number to empty state |
procedure Assign(); override; |
|
Assign version from another source |
function CompareVersion(); |
|
Compare this version with another version |
function SameVersion(); |
|
Check if versions are identical |
property AsString: string; [rw] |
|
Version number as formatted string |
property Empty: Boolean; [r] |
|
Whether the version number is empty |
published |
||
|
Major version number |
|
|
Minor version number |
|
|
Micro version number |
|
|
Build version number |
|
end; |
|
Represents a Free Pascal version number |
|
| | | ||
| | | ||
Class that encapsulates a Free Pascal version number with major, minor, micro, and build components. Provides methods for version comparison, parsing from strings, and formatting to strings.