InteractiveResult¶
Namespace: ThinkGeo.UI.Wpf
This class specifies the InteractiveResult when deal with the Interactive method in InteractiveOverlay.
public class InteractiveResult
Inheritance Object → InteractiveResult
Properties¶
InteractiveOverlayUpdateMode¶
Gets or sets how the interactive overlay should be refreshed after processing.
public InteractiveOverlayUpdateMode InteractiveOverlayUpdateMode { get; set; }
Property Value¶
ProcessOtherOverlaysMode¶
Gets or sets how other overlays should be processed after this interaction.
public ProcessOtherOverlaysMode ProcessOtherOverlaysMode { get; set; }
Property Value¶
NewCurrentExtent¶
Gets or sets the new map extent produced by the interaction, if any.
public RectangleShape NewCurrentExtent { get; set; }
Property Value¶
RectangleShape
RotationAngleIncrement¶
Gets or sets the rotation increment, in degrees, produced by the interaction.
public float RotationAngleIncrement { get; set; }
Property Value¶
ScreenX¶
Gets or sets the screen X coordinate associated with the interaction.
public float ScreenX { get; set; }
Property Value¶
ScreenY¶
Gets or sets the screen Y coordinate associated with the interaction.
public float ScreenY { get; set; }
Property Value¶
ForthRedraw¶
Gets or sets a value indicating whether the overlay should force a redraw.
public bool ForthRedraw { get; set; }
Property Value¶
Constructors¶
InteractiveResult()¶
Constructor of InteractiveResult class.
public InteractiveResult()
Remarks:
If you use this constructor, you have to set the properties manually before use.
InteractiveResult(InteractiveOverlayUpdateMode, ProcessOtherOverlaysMode)¶
Constructor of InteractiveResult class.
public InteractiveResult(InteractiveOverlayUpdateMode interactiveOverlayUpdateMode, ProcessOtherOverlaysMode processOtherOverlaysMode)
Parameters¶
interactiveOverlayUpdateMode InteractiveOverlayUpdateMode
This parameter specified the interactiveOverlayUpdateMode to construct the class.
processOtherOverlaysMode ProcessOtherOverlaysMode
This parameter specified the ProcessOtherOverlaysMode to construct the class.