Property SLCommonGen.TSLBasicCommonGen.ClockSource
From Mitov Wiki Doc
(Difference between revisions)
(Automated Syncronization with Documentation) |
(Automated Syncronization with Documentation) |
Revision as of 16:52, 18 October 2012
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: TSLBasicCommonGen
Contents |
Syntax
Delphi:
property ClockSource : TSLClockSource read FClockSource write SetClockSource default csInternal;
C++ Builder:
__property TSLClockSource ClockSource = { read=FClockSource, write=SetClockSource, default=csInternal };
Summary
Specifies the clock source - internal or external.
Description
Use this property to specify whether or not the component
will use internal or external clock source.
Delphi example:
SLGenericGen1.ClockSource := csExternal;
C++ Builder example:
SLGenericGen1->ClockSource = csExternal;
Visual C++(MFC/Win32) example:
SLGenericGen1.ClockSource = csExternal;
Visual C++/CLI example:
genericGen1->ClockSource = Mitov::SignalLab::ClockSource::External;
C# example:
genericGen1.ClockSource = Mitov.SignalLab.ClockSource.External;
VB example:
GenericGen1.ClockSource = Mitov.SignalLab.ClockSource.External