| Description | Hierarchy | Fields | Methods | Properties |
type TOSOperator = class(TReferenceCounted)
The Operating system operator provides operation system specific methods and informations.
![]() |
function GetTextFromClipboard: AnsiString; inline; |
![]() |
procedure CopyToClipboard(const Test: AnsiString); inline; |
![]() |
property AvailableMemory: LongWord read GetAvailableSystemMemory; |
![]() |
property IsMemoryInfoAvailable: Boolean read GetIsSystemMemoryAvailable; |
![]() |
property IsProcessorSpeedAvailable: Boolean read GetIsProcessorSpeedAvailable; |
![]() |
property OSVersion: StringType read GetOperatingSystemVersion; |
![]() |
property ProcessorSpeedMHz: LongWord read GetProcessorSpeedMHz; |
![]() |
property TotalMemory: LongWord read GetTotalSystemMemory; |
![]() |
function GetTextFromClipboard: AnsiString; inline; |
|
Retrieves ("Pastes") text from the clipboard. | |
![]() |
procedure CopyToClipboard(const Test: AnsiString); inline; |
|
Copies text to the clipboard. | |
![]() |
property AvailableMemory: LongWord read GetAvailableSystemMemory; |
|
The available system memory. | |
![]() |
property IsMemoryInfoAvailable: Boolean read GetIsSystemMemoryAvailable; |
|
Whether the TotalMemory and AvailableMemory properties are available. | |
![]() |
property IsProcessorSpeedAvailable: Boolean read GetIsProcessorSpeedAvailable; |
|
Whether the ProcessorSpeedMHz property is available. | |
![]() |
property OSVersion: StringType read GetOperatingSystemVersion; |
|
The current operating system version as string. This usually includes the OS name, build number and architecture. | |
![]() |
property ProcessorSpeedMHz: LongWord read GetProcessorSpeedMHz; |
|
The processor speed in megahertz. | |
![]() |
property TotalMemory: LongWord read GetTotalSystemMemory; |
|
The total system memory. | |