Class SLScope.TSLScopeChannelMarker

From Mitov Wiki Doc
(Difference between revisions)
Jump to: navigation, search
(Automated Syncronization with Documentation)
 
(Automated Syncronization with Documentation)
Line 9: Line 9:
 
'''Unit:''' [[Unit SLScope|SLScope]]
 
'''Unit:''' [[Unit SLScope|SLScope]]
  
'''Inherits:''' [[Class SLScope.TSLDisplayMarker|TSLDisplayMarker]]
+
'''Inherits:''' [[Class SLScope.TSLBasicDisplayMarker|TSLBasicDisplayMarker]]
  
 
== Syntax ==
 
== Syntax ==
 
=== Delphi: ===
 
=== Delphi: ===
 
<code>
 
<code>
'''type''' TSLScopeChannelMarker = '''class'''( [[Class SLScope.TSLDisplayMarker|TSLDisplayMarker]] )
+
'''type''' TSLScopeChannelMarker = '''class'''( [[Class SLScope.TSLBasicDisplayMarker|TSLBasicDisplayMarker]] )
 
</code>
 
</code>
 
=== C++ Builder: ===
 
=== C++ Builder: ===
 
<code>
 
<code>
'''class''' TSLScopeChannelMarker : '''public''' [[Class SLScope.TSLDisplayMarker|TSLDisplayMarker]]
+
'''class''' TSLScopeChannelMarker : '''public''' [[Class SLScope.TSLBasicDisplayMarker|TSLBasicDisplayMarker]]
 
</code>
 
</code>
 
=== Visual C++ (MFC): ===
 
=== Visual C++ (MFC): ===
 
<code>
 
<code>
'''class''' CTSLScopeChannelMarker : '''public''' [[Class SLScope.TSLDisplayMarker|CTSLDisplayMarker]]
+
'''class''' CTSLScopeChannelMarker : '''public''' [[Class SLScope.TSLBasicDisplayMarker|CTSLBasicDisplayMarker]]
 
</code>
 
</code>
 
=== C# (.NET): ===
 
=== C# (.NET): ===
 
<code>
 
<code>
'''public ref class''' TSLScopeChannelMarker : [[Class SLScope.TSLDisplayMarker|Mitov.PlotLab.DisplayMarker]]
+
'''public ref class''' TSLScopeChannelMarker : [[Class SLScope.TSLBasicDisplayMarker|Mitov.PlotLab.BasicDisplayMarker]]
 
</code>
 
</code>
 
== Summary ==
 
== Summary ==
Line 49: Line 49:
 
*[[Event SLScope.TSLScopeChannelMarker.OnDragged|OnDragged]] - Occurs when the marker has been dragged by the mouse.  
 
*[[Event SLScope.TSLScopeChannelMarker.OnDragged|OnDragged]] - Occurs when the marker has been dragged by the mouse.  
  
== From [[Class SLScope.TSLDisplayMarker|TSLDisplayMarker]] ==
+
== From [[Class SLScope.TSLBasicDisplayMarker|TSLBasicDisplayMarker]] ==
  
 
== Methods ==
 
== Methods ==
  
 
=== Public ===
 
=== Public ===
*[[Method procedure SLScope.TSLDisplayMarker.Draw(TLPCanvas;TRect;Integer;Integer;Real;Real;Boolean)|procedure Draw(ACanvas : TLPCanvas; DispRect : TRect; X : Integer; Y : Integer; APosition : Real; AValue : Real; Printing : Boolean)]]
+
*[[Method function SLScope.TSLBasicDisplayMarker.HitTest(Integer;Integer) : Boolean|function HitTest(X : Integer; Y : Integer) : Boolean]]
*[[Method procedure SLScope.TSLDisplayMarker.ClearDrawData()|procedure ClearDrawData()]]
+
*[[Method procedure SLScope.TSLBasicDisplayMarker.Draw(TLPCanvas;TRect;Integer;Integer;Real;Real;Boolean)|procedure Draw(ACanvas : TLPCanvas; DispRect : TRect; X : Integer; Y : Integer; APosition : Real; AValue : Real; Printing : Boolean)]]
 +
*[[Method procedure SLScope.TSLBasicDisplayMarker.DrawDrag(TLPCanvas;Integer;Integer;Real;Real)|procedure DrawDrag(ACanvas : TLPCanvas; X : Integer; Y : Integer; APosition : Real; AValue : Real)]]
 +
*[[Method procedure SLScope.TSLBasicDisplayMarker.ClearDrawData()|procedure ClearDrawData()]]
 +
 
 +
== From [[Class SLScope.TSLDisplaySelectableCollectionItem|TSLDisplaySelectableCollectionItem]] ==
 +
 
 +
== Methods ==
 +
 
 +
=== Public ===
 +
*[[Method procedure SLScope.TSLDisplaySelectableCollectionItem.MouseEnter()|procedure MouseEnter()]]
 +
*[[Method procedure SLScope.TSLDisplaySelectableCollectionItem.MouseLeave()|procedure MouseLeave()]]
 +
*[[Method procedure SLScope.TSLDisplaySelectableCollectionItem.MouseDown(TMouseButton;TShiftState;Integer;Integer;Boolean;Boolean)|procedure MouseDown(Button : TMouseButton; Shift : TShiftState; X : Integer; Y : Integer; MouseInside : Boolean; var MouseHandled : Boolean)]]
 +
*[[Method procedure SLScope.TSLDisplaySelectableCollectionItem.MouseUp(TMouseButton;TShiftState;Integer;Integer;Boolean)|procedure MouseUp(Button : TMouseButton; Shift : TShiftState; X : Integer; Y : Integer; MouseInside : Boolean)]]
  
 
== From [[Class SLScope.TSLDisplayCollectionItem|TSLDisplayCollectionItem]] ==
 
== From [[Class SLScope.TSLDisplayCollectionItem|TSLDisplayCollectionItem]] ==
Line 62: Line 74:
  
 
=== Published ===
 
=== Published ===
*[[Property SLScope.TSLDisplayCollectionItem.Name|Name]] - Specifies the name of the item.
 
 
*[[Property SLScope.TSLDisplayCollectionItem.Tag|Tag]] - Stores an general purpose integer value as part of an item  
 
*[[Property SLScope.TSLDisplayCollectionItem.Tag|Tag]] - Stores an general purpose integer value as part of an item  
 +
 +
== From [[Class LPComponent.TLPNamedCollectionItem|TLPNamedCollectionItem]] ==
 +
 +
== Properties ==
 +
 +
=== Published ===
 +
*[[Property LPComponent.TLPNamedCollectionItem.Name|Name]]
 +
 +
== From [[Class LPComponent.TLPCollectionItem|TLPCollectionItem]] ==
 +
 +
== Methods ==
 +
 +
=== Public ===
 +
*[[Method function LPComponent.TLPCollectionItem.QueryInterface(TGUID;TLPCollectionItem) : HResult|function QueryInterface(IID : TGUID; Obj : TLPCollectionItem) : HResult]]
  
 
[[Category:Classes]]
 
[[Category:Classes]]

Revision as of 20:29, 10 June 2013

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.

Package: SignalLabScopePkg

Unit: SLScope

Inherits: TSLBasicDisplayMarker

Contents

Syntax

Delphi:

type TSLScopeChannelMarker = class( TSLBasicDisplayMarker )

C++ Builder:

class TSLScopeChannelMarker : public TSLBasicDisplayMarker

Visual C++ (MFC):

class CTSLScopeChannelMarker : public CTSLBasicDisplayMarker

C# (.NET):

public ref class TSLScopeChannelMarker : Mitov.PlotLab.BasicDisplayMarker

Summary

Scope channel marker class.

Description

Defines a scope channel marker.

Properties

Published

Public

Events

From TSLBasicDisplayMarker

Methods

Public

From TSLDisplaySelectableCollectionItem

Methods

Public

From TSLDisplayCollectionItem

Properties

Published

From TLPNamedCollectionItem

Properties

Published

From TLPCollectionItem

Methods

Public

Personal tools
Namespaces
Variants
Actions
Navigation
Toolbox