Property TLClockGen.TTLClockGen.Priority

From Mitov Wiki Doc
Jump to: navigation, search

This is a Beta Read Only version of this page. Please review and send recommendations to mitov@mitov.com. We will enable the editing as soon as we are happy with the overall Wiki site.

Class: TTLClockGen

Contents

Syntax

Delphi:

property Priority : TThreadPriority read FPriority write SetPriority default tpNormal;

C++ Builder:

__property TThreadPriority Priority = { read=FPriority, write=SetPriority, default=tpNormal };

Summary

Specifies the clock generator priority in full speed mode.

Description

Use this property to specify the desired clock generator priority in full speed mode.


Delphi example:

TLClockGen1.Priority := tpHighest;

C++ Builder example:

TLClockGen1->Priority = tpHighest;

Visual C++(MFC/Win32) example:

TLClockGen1.Priority = tpHighest;

Visual C++/CLI example:

clockGen1->Priority = Vcl::ThreadPriority::Highest;

C# Example:

clockGen1.Priority = Vcl.ThreadPriority.Highest;

VB example:

ClockGen1.Priority = Vcl.ThreadPriority.Highest

Personal tools
Namespaces
Variants
Actions
Navigation
Toolbox