ThinkGeo.MapSuite.Styles.GradientStyle
Inheritance Hierarchy
Members Summary
Public Constructors
  GradientStyle(String,Double,GeoSolidBrush,Double,GeoSolidBrush)
 GradientStyle(String,Double,GeoSolidBrush,Double,GeoSolidBrush) 
 
Parameters
-  columnName - 
-  Type:String 
-  Description:N/A 
 
-  lowerValue - 
-  Type:Double 
-  Description:N/A 
 
-  upperValue - 
-  Type:Double 
-  Description:N/A 
 
  GradientStyle(String,Double,GeoSolidBrush,Double,GeoSolidBrush,Double,GeoSolidBrush)
 GradientStyle(String,Double,GeoSolidBrush,Double,GeoSolidBrush,Double,GeoSolidBrush) 
-  This constructor creates a new instance by passing the ColumnName (which it will get the data from) as well as the lowerValue and its corresponding SolidBrush, the upperValue and its corresponding SolidBrush, and the NoDataValue and its corresponding SolidBrush. 
 
Parameters
-  columnName - 
-  Type:String 
-  Description:N/A 
 
-  lowerValue - 
-  Type:Double 
-  Description:N/A 
 
-  upperValue - 
-  Type:Double 
-  Description:N/A 
 
-  noDataValue - 
-  Type:Double 
-  Description:N/A 
 
 
Protected Constructors
Public Methods
  CloneDeep()
 CloneDeep() 
 
Return Value
Parameters
  Draw(IEnumerable<Feature>,GeoCanvas,Collection<SimpleCandidate>,Collection<SimpleCandidate>)
 Draw(IEnumerable<Feature>,GeoCanvas,Collection<SimpleCandidate>,Collection<SimpleCandidate>) 
 
Return Value
-  Type:Void 
-  Description:N/A 
 
Parameters
  Draw(IEnumerable<BaseShape>,GeoCanvas,Collection<SimpleCandidate>,Collection<SimpleCandidate>)
 Draw(IEnumerable<BaseShape>,GeoCanvas,Collection<SimpleCandidate>,Collection<SimpleCandidate>) 
 
Return Value
-  Type:Void 
-  Description:N/A 
 
Parameters
  GetRequiredColumnNames()
 GetRequiredColumnNames() 
 
Return Value
-  Type:Collection<String> 
-  Description:N/A 
 
Parameters
  DrawSample(GeoCanvas,DrawingRectangleF)
 DrawSample(GeoCanvas,DrawingRectangleF) 
 
Return Value
-  Type:Void 
-  Description:N/A 
 
Parameters
  DrawSample(GeoCanvas)
 DrawSample(GeoCanvas) 
 
Return Value
-  Type:Void 
-  Description:N/A 
 
Parameters
  SaveStyle(String)
 SaveStyle(String) 
 
Return Value
-  Type:Void 
-  Description:N/A 
 
Parameters
-  filePathName - 
-  Type:String 
-  Description:N/A 
 
  SaveStyle(Stream)
 SaveStyle(Stream) 
 
Return Value
-  Type:Void 
-  Description:N/A 
 
Parameters
-  stream - 
-  Type:Stream 
-  Description:N/A 
 
  ToString()
 ToString() 
 
Return Value
-  Type:String 
-  Description:N/A 
 
Parameters
  Equals(Object)
 Equals(Object) 
 
Return Value
-  Type:Boolean 
-  Description:N/A 
 
Parameters
-  obj - 
-  Type:Object 
-  Description:N/A 
 
  GetHashCode()
 GetHashCode() 
 
Return Value
-  Type:Int32 
-  Description:N/A 
 
Parameters
  GetType()
 GetType() 
 
Return Value
-  Type:Type 
-  Description:N/A 
 
Parameters
Protected Methods
  DrawCore(IEnumerable<Feature>,GeoCanvas,Collection<SimpleCandidate>,Collection<SimpleCandidate>)
 DrawCore(IEnumerable<Feature>,GeoCanvas,Collection<SimpleCandidate>,Collection<SimpleCandidate>) 
 
-  This virtual method is called from the concrete public method Draw. In this method, we take the features you passed in and draw them on the canvas you provided. Each style (based on its properties) may draw each feature differently. When implementing this virtual method, consider each feature and its column data values. You can use the full power of the GeoCanvas to do the drawing. If you need column data for a feature, be sure to override the GetRequiredColumnNamesCore and add the columns you need to the collection. In many of the styles, we add properties to allow the user to specify which field they need; then, in the GetRequiredColumnNamesCore, we read that property and add it to the collection. 
 
Return Value
-  Type:Void 
-  Description:None 
 
Parameters
  GetRequiredColumnNamesCore()
 GetRequiredColumnNamesCore() 
 
-  This abstract method is called from the concrete public method GetRequiredFieldNames. In this method, we return the column names that are required for the style to draw the feature properly. For example, if you have a style that colors areas blue when a certain column value is over 100, then you need to be sure you include that column name. This will ensure that the column data is returned to you in the feature when it is ready to draw. In many of the styles, we add properties to allow the user to specify which field they need; then, in the GetRequiredColumnNamesCore we read that property and add it to the collection. 
 
Return Value
Parameters
  CloneDeepCore()
 CloneDeepCore() 
 
Return Value
Parameters
  DrawSampleCore(GeoCanvas,DrawingRectangleF)
 DrawSampleCore(GeoCanvas,DrawingRectangleF) 
 
Return Value
-  Type:Void 
-  Description:N/A 
 
Parameters
  Finalize()
 Finalize() 
 
Return Value
-  Type:Void 
-  Description:N/A 
 
Parameters
  MemberwiseClone()
 MemberwiseClone() 
 
Return Value
-  Type:Object 
-  Description:N/A 
 
Parameters
Public Properties
  ColumnName
 ColumnName 
 
Return Value
  LowerValue
 LowerValue 
 
Return Value
  LowerGeoSolidBrush
 LowerGeoSolidBrush 
 
Return Value
  UpperValue
 UpperValue 
 
Return Value
  UpperGeoSolidBrush
 UpperGeoSolidBrush 
 
Return Value
  NoDataValue
 NoDataValue 
 
Return Value
  NoDataSolidBrush
 NoDataSolidBrush 
 
Return Value
  Name
 Name 
 
Return Value
  StyleClass
 StyleClass 
 
Return Value
  IsActive
 IsActive 
 
Return Value
  IsDefault
 IsDefault 
 
Return Value
  RequiredColumnNames
 RequiredColumnNames 
 
Return Value
  Filters
 Filters 
 
Return Value
Protected Properties
  FiltersCore
 FiltersCore 
 
Return Value
Public Events