TiPlotObject.UserSelected
TiPlotObject
Sets or gets whether the plot object is selected.
property UserSelected : Boolean;
Description
Use the UserSelected property to set or get whether a particular plot object
is selected or has "focus". Set the property to give the plot object the
"focus" within the control.
Note: focus refers to the user selection of objects within our component. This
does not affect the focus handled by your development environment, only focus
within our component. That is why this property is called UserSelected and not
Focus.
Example
Delphi
iComponent.XAxis[0].UserSelected := True;
Value := iComponent.XAxis[0].UserSelected;
iComponent.Channel[0].UserSelected := True;
Value := iComponent.Channel[0].UserSelected;
C++ Builder
iComponent->XAxis[0]->UserSelected = True;
Value = iComponent->XAxis[0]->UserSelected;
iComponent->Channel[0]->UserSelected = True;
Value = iComponent->Channel[0]->UserSelected;
Contents | Index | Previous | Next