Click or drag to resize

IMovableItem Interface

Represents an "axis" usable in a move operation. The "axis" can be anything moving along a single dimension (linear or rotating motor, stage axis, etc)

Namespace:  LynceeTec.API.Hardware
Assembly:  LynceeTec.API.Hardware (in LynceeTec.API.Hardware.dll) Version: 9.2.6612.0 , built 2022-07-14 10:43:42 UTC
Syntax
public interface IMovableItem

The IMovableItem type exposes the following members.

Properties
  NameDescription
Public propertyMaxPosition
Maximal physical position of the movable item. (The unit is always SI and depends on the type of axis: [m] for linear axes and [rad] for rotation axes)
Public propertyMinPosition
Minimal physical position of the movable item. (The unit is always SI and depends on the type of axis: [m] for linear axes and [rad] for rotation axes)
Public propertyMovableItemUniqueId
The unique ID of the movable item
Top
Methods
  NameDescription
Public methodGetCurrentPosition
Gets the current position of the movable item. (The unit is always SI and depends on the type of axis: [m] for linear axes and [rad] for rotation axes)
Public methodMoveToAbsolutePosition
Move the movable item to an absolute position. The command is blocking (it will return after the movable item has finished moving).
Public methodMoveToRelativePosition
Move the movable item to a relative position. The command is blocking (it will return after the movable item has finished moving).
Top
See Also