The dynamic layer draw method. You should implement this method in order to allow you layer to draw while the map is in dynamic mode
Syntax
Visual Basic (Declaration) | |
---|
Public MustOverride Sub DrawDynamicLayer( _
ByVal DynamicDrawPhase As esriDynamicDrawPhase, _
ByVal Display As IDisplay, _
ByVal DynamicDisplay As IDynamicDisplay _
) |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As BaseDynamicLayer
Dim DynamicDrawPhase As esriDynamicDrawPhase
Dim Display As IDisplay
Dim DynamicDisplay As IDynamicDisplay
instance.DrawDynamicLayer(DynamicDrawPhase, Display, DynamicDisplay)
|
Parameters
- DynamicDrawPhase
- the current drawphase of the drawing
- Display
- the ActiveView's display
- DynamicDisplay
- the ActiveView's dynamic display
Remarks
See Also