Draws specified point on the display.
[Visual Basic 6.0] Sub DrawPoint(
ByVal Point As IGeometry _
)
[Visual Basic .NET] Public Sub DrawPoint ( _ ByVal Point As IGeometry _ )
[C#] public void DrawPoint ( IGeometry Point );
[Java] public void drawPoint ( IGeometry Point ) throws IOException, AutomationException
[C++] HRESULT DrawPoint( IGeometry* Point );
DrawPoint draws a Point 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.
IDisplay Interface | IDisplay.StartDrawing Method