API / geotoolkit / welllog / widgets / Events / Events
Events triggered by the WellLog Widget.
Example
// Capture VisibleDepthLimitsChanged event
import {Events as WellLogEvents} from '@int/geotoolkit/welllog/widgets/Events';
widget.on(WellLogEvents.VisibleDepthLimitsChanged, (event, sender, eventArgs) => {
// eventArgs is json object
// {'old': oldLimits, 'new': newLimits}
});Enumeration Members
Enumeration Members
• DataUpdating = "updating"
It occurs when widget can request data. It happens if visible limits or scale is changed.
• DepthRangeChanged = "depthrangechanged"
This event occurs when virtual depth model limit is changed. For example, if you call method setDepthLimits.
• OrientationChanged = "orientationChanged"
If widget orientation changed.
• TracksSizeChanged = "onTracksSizeChanged"
This occurs if any sum size of all tracks is changed. It can also happen if a track is deleted, inserted or changed size
• VisibleDepthLimitsChanged = "visibleDepthLimitsChanged"
This event occurs when the visible depth limits is changed. It can scroll, scale operations.
• VisualsSelected = "visualsSelected"
If visual is selected.