Class SLScope.TSLDisplayEllipticZone

From Mitov Wiki Doc
(Difference between revisions)
Jump to: navigation, search
(Automated Syncronization with Documentation)
 
(Automated Syncronization with Documentation)
 
(6 intermediate revisions by one user not shown)
Line 26: Line 26:
 
=== C# (.NET): ===
 
=== C# (.NET): ===
 
<code>
 
<code>
'''public ref class''' TSLDisplayEllipticZone : [[Class SLScope.TSLBasicDisplayZone|Mitov.PlotLab.BasicDisplayZone]]
+
'''public ref class''' DisplayEllipticZone : [[Class SLScope.TSLBasicDisplayZone|Mitov.PlotLab.BasicDisplayZone]]
 
</code>
 
</code>
 
== Summary ==
 
== Summary ==
Line 49: Line 49:
 
*[[Property SLScope.TSLBasicDisplayZone.Pen|Pen]] - Specifies the Pen to be used for the display zone.  
 
*[[Property SLScope.TSLBasicDisplayZone.Pen|Pen]] - Specifies the Pen to be used for the display zone.  
 
*[[Property SLScope.TSLBasicDisplayZone.MouseCursor|MouseCursor]] - Specifies the image used to represent the mouse pointer when it passes into the region covered by the zone.  
 
*[[Property SLScope.TSLBasicDisplayZone.MouseCursor|MouseCursor]] - Specifies the image used to represent the mouse pointer when it passes into the region covered by the zone.  
 +
*[[Property SLScope.TSLBasicDisplayZone.XAxisIndex|XAxisIndex]] - Specifies the index of the X axis the element will be associated with.
 +
*[[Property SLScope.TSLBasicDisplayZone.YAxisIndex|YAxisIndex]] - Specifies the index of the Y axis the element will be associated with.
  
 
=== Public ===
 
=== Public ===
 
*[[Property SLScope.TSLBasicDisplayZone.IsDynamic|IsDynamic]] - The zone is created by the user from inside the component dialog.  
 
*[[Property SLScope.TSLBasicDisplayZone.IsDynamic|IsDynamic]] - The zone is created by the user from inside the component dialog.  
 +
*[[Property SLScope.TSLBasicDisplayZone.XAxis|XAxis]]
 +
*[[Property SLScope.TSLBasicDisplayZone.YAxis|YAxis]]
  
 
== Events ==
 
== Events ==
Line 69: Line 73:
 
== From [[Class SLScope.TSLOptionalAxesDisplayCollectionItem|TSLOptionalAxesDisplayCollectionItem]] ==
 
== From [[Class SLScope.TSLOptionalAxesDisplayCollectionItem|TSLOptionalAxesDisplayCollectionItem]] ==
  
== Properties ==
+
== Methods ==
 
+
=== Published ===
+
*[[Property SLScope.TSLOptionalAxesDisplayCollectionItem.XAxisIndex|XAxisIndex]] - Specifies the index of the X axis the element will be associated with.
+
*[[Property SLScope.TSLOptionalAxesDisplayCollectionItem.YAxisIndex|YAxisIndex]] - Specifies the index of the Y axis the element will be associated with.
+
  
 
=== Public ===
 
=== Public ===
*[[Property SLScope.TSLOptionalAxesDisplayCollectionItem.XAxis|XAxis]] - Specifies the X axis the element will be associated with.
+
*[[Method function SLScope.TSLOptionalAxesDisplayCollectionItem.GetOwnerComponent() : TSLDataDisplay|function GetOwnerComponent() : TSLDataDisplay]]
*[[Property SLScope.TSLOptionalAxesDisplayCollectionItem.YAxis|YAxis]] - Specifies the Y axis the element will be associated with.
+
  
 
== From [[Class SLScope.TSLOptionalDisplayCollectionItem|TSLOptionalDisplayCollectionItem]] ==
 
== From [[Class SLScope.TSLOptionalDisplayCollectionItem|TSLOptionalDisplayCollectionItem]] ==
Line 85: Line 84:
 
=== Published ===
 
=== Published ===
 
*[[Property SLScope.TSLOptionalDisplayCollectionItem.Visible|Visible]] - Specifies if the item will be visible.  
 
*[[Property SLScope.TSLOptionalDisplayCollectionItem.Visible|Visible]] - Specifies if the item will be visible.  
 +
 +
== 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 91: Line 100:
  
 
=== 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]]

Latest revision as of 00:30, 26 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: TSLBasicDisplayZone

Contents

Syntax

Delphi:

type TSLDisplayEllipticZone = class( TSLBasicDisplayZone )

C++ Builder:

class TSLDisplayEllipticZone : public TSLBasicDisplayZone

Visual C++ (MFC):

class CTSLDisplayEllipticZone : public CTSLBasicDisplayZone

C# (.NET):

public ref class DisplayEllipticZone : Mitov.PlotLab.BasicDisplayZone

Summary

Display elliptic zone.

Description

Defines a display elliptic zone.

Properties

Published

From TSLBasicDisplayZone

Properties

Published

Public

Events

From TSLOptionalAxesCursorDisplayCollectionItem

Properties

Published

From TSLOptionalAxesDisplayCollectionItem

Methods

Public

From TSLOptionalDisplayCollectionItem

Properties

Published

From TSLDisplaySelectableCollectionItem

Methods

Public

From TSLDisplayCollectionItem

Properties

Published

From TLPNamedCollectionItem

Properties

Published

From TLPCollectionItem

Methods

Public

Personal tools
Namespaces
Variants
Actions
Navigation
Toolbox