ArcObjects Library Reference (Display)  

IDisplay.DrawRectangle Method

Draws specified rectangle on the display.

[Visual Basic .NET]
Public Sub DrawRectangle ( _
    ByVal rectangle As IEnvelope _
)
[C#]
public void DrawRectangle (
    IEnvelope rectangle
);
[C++]
HRESULT DrawRectangle(
  IEnvelope* rectangle
);
[C++]

Parameters

rectangle [in]

  rectangle is a parameter of type IEnvelope

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Remarks

DrawRectangle draws a Envelope object with the symbol that must be specified before hand with the SetSymbol method. All draw methods must be enclosed between the calls to StartDrawing and FinishDrawing unless you are drawing in response to the IActiveViewEvents::AfterDraw event.

See Also

IDisplay Interface | IDisplay.StartDrawing Method