Class SLScope.TSLBasicDisplayZone
From Mitov Wiki Doc
(Difference between revisions)
(Automated Syncronization with Documentation) |
(Automated Syncronization with Documentation) |
||
Line 41: | Line 41: | ||
*[[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 61: | Line 65: | ||
== From [[Class SLScope.TSLOptionalAxesDisplayCollectionItem|TSLOptionalAxesDisplayCollectionItem]] == | == From [[Class SLScope.TSLOptionalAxesDisplayCollectionItem|TSLOptionalAxesDisplayCollectionItem]] == | ||
− | == | + | == Methods == |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
=== Public === | === Public === | ||
− | *[[ | + | *[[Method function SLScope.TSLOptionalAxesDisplayCollectionItem.GetOwnerComponent() : TSLDataDisplay|function GetOwnerComponent() : TSLDataDisplay]] |
− | + | ||
== From [[Class SLScope.TSLOptionalDisplayCollectionItem|TSLOptionalDisplayCollectionItem]] == | == From [[Class SLScope.TSLOptionalDisplayCollectionItem|TSLOptionalDisplayCollectionItem]] == | ||
Line 77: | Line 76: | ||
=== 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 83: | Line 92: | ||
=== Published === | === Published === | ||
− | |||
*[[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: TSLOptionalAxesCursorDisplayCollectionItem
Syntax
Delphi:
type TSLBasicDisplayZone = class( TSLOptionalAxesCursorDisplayCollectionItem )
C++ Builder:
class TSLBasicDisplayZone : public TSLOptionalAxesCursorDisplayCollectionItem
Visual C++ (MFC):
class CTSLBasicDisplayZone : public CTSLOptionalAxesCursorDisplayCollectionItem
C# (.NET):
public ref class TSLBasicDisplayZone : Mitov.PlotLab.OptionalAxesCursorDisplayCollectionItem
Summary
Basic display zone.
Description
Defines basic display zone abstract class.
Properties
Published
- Channels - Collection of channels that will be checked if intersecting with the zone.
- Brush - Specifies the Brush to be used for the display zone.
- Pen - Specifies the Pen to be used for the display zone.
- MouseCursor - Specifies the image used to represent the mouse pointer when it passes into the region covered by the zone.
- XAxisIndex - Specifies the index of the X axis the element will be associated with.
- YAxisIndex - Specifies the index of the Y axis the element will be associated with.
Public
Events
- OnClick - Occurs when the user clicks the display zone.
- OnMouseDown - Occurs when the user presses a mouse button with the mouse pointer over the display zone.
- OnMouseUp - Occurs when the user releases a mouse button that was pressed with the mouse pointer over the display zone.
- OnMouseEnter - Occurs when the mouse pointer moves over the display zone.
- OnMouseLeave - Occurs when the mouse pointer moves off from over the display zone.
From TSLOptionalAxesCursorDisplayCollectionItem
Properties
Published
- MouseCursor - Specifies the image used to represent the mouse pointer when it passes into the region covered by the element.
From TSLOptionalAxesDisplayCollectionItem
Methods
Public
From TSLOptionalDisplayCollectionItem
Properties
Published
- Visible - Specifies if the item will be visible.
From TSLDisplaySelectableCollectionItem
Methods
Public
- procedure MouseEnter()
- procedure MouseLeave()
- procedure MouseDown(Button : TMouseButton; Shift : TShiftState; X : Integer; Y : Integer; MouseInside : Boolean; var MouseHandled : Boolean)
- procedure MouseUp(Button : TMouseButton; Shift : TShiftState; X : Integer; Y : Integer; MouseInside : Boolean)
From TSLDisplayCollectionItem
Properties
Published
- Tag - Stores an general purpose integer value as part of an item