Click or drag to resize

RenderContext Class

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
A RenderContext is an abstract class implemented to control the placement of renderable objects.
Inheritance Hierarchy
SystemObject
  Telogis.GeoBaseRenderContext

Namespace:  Telogis.GeoBase
Assembly:  geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax
public abstract class RenderContext : IDisposable

The RenderContext type exposes the following members.

Properties
  NameDescription
Public propertyMap
Implemented by derived classes to get the IMap being used by this RenderContext.
Public propertyMode
Implemented by derived classes to get and set the RenderMode being used by this RenderContext.
Top
Methods
  NameDescription
Public methodDispose
Implemented by derived classes to dispose of a map.
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodPlace(Rectangle, Int32, Double)
Implemented by derived classes to reserve the specified screen area for object placement.
Public methodPlace(Rectangle, Int32, Double, RenderMask)
Implemented by derived classes to reserve the specified screen area for object placement.
Public methodPlace(Int32, Int32, Int32, Int32, Int32, Double)
Implemented by derived classes to reserve the specified screen area for object placement.
Public methodPlace(Int32, Int32, Int32, Int32, Int32, Double, RenderMask)
Implemented by derived classes to reserve the specified screen area for object placement.
Public methodTest(Rectangle, Int32, Double)
Implemented by derived classes to check whether the given Rectangle lies over an area reserved by an already placed object.
Public methodTest(Rectangle, Int32, Double, RenderMask)
Implemented by derived classes to check whether the given Rectangle lies over an area reserved by an already placed object.
Public methodTest(Int32, Int32, Int32, Int32, Int32, Double)
Implemented by derived classes to check whether the given screen area overlaps an area reserved by an already placed object.
Public methodTest(Int32, Int32, Int32, Int32, Int32, Double, RenderMask)
Implemented by derived classes to check whether the given screen area overlaps an area reserved by an already placed object.
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Remarks
See RenderMode for further explanation of the render modes and how they can be used.

Related articles: Renderers Tutorial, Defining the Renderer.

See Also