TiPlotAxis.UpdateResumeValues
TiPlotAxis
Updates the tracking resume values (Min and Span) with the current Min and
Span.
procedure UpdateResumeValues;
Description
Call UpdateResumeValues to update the tracking resume values (Min and Span)
with the current Axis Min and Span properties. When tracking is stopped on an
axis, the axis immediately stores in memory its current Min and Span properties.
When tracking is resumed, the Min and Span properties are restored to their
previous values. If you call this procedure, then these stored Min and Span
properties are updated with the current Min and Span.
Note: This method functions the same as if the user right-clicked on the axis and
selected "Update Resume Values".
Example
Delphi
iComponent.XAxis[0].UpdateResumeValues();
iComponent.YAxis[0].UpdateResumeValues();
C++ Builder
iComponent->XAxis[0]->UpdateResumeValues();
iComponent->YAxis[0]->UpdateResumeValues();
Contents | Index | Previous | Next