====== ThinkGeo.MapSuite.Core.MultipleShapeFileFeatureLayer ====== {{section>upgrade_map_suite_to_10.0}} This layer represents multiple Shape Files of the same type. ===== Inheritance Hierarchy ===== *System.Object *ThinkGeo.MapSuite.Core.Layer *ThinkGeo.MapSuite.Core.FeatureLayer ***ThinkGeo.MapSuite.Core.MultipleShapeFileFeatureLayer** ===== Members Summary ===== ==== Public Constructors ==== ** {{wiki:PublicMethod.gif|}} MultipleShapeFileFeatureLayer() ** This is a constructor for the class. == Remarks == If you use this constructor, then you need to set to required properties manually. == Parameters ==
** {{wiki:PublicMethod.gif|}} MultipleShapeFileFeatureLayer(String) ** This is a constructor for the class. == Remarks == This constructor allows you to pass in the path and filename pattern to match. == Parameters == * //multipleShapeFilePattern// * Type:String * Description:This parameter is the matching pattern to determine which Shape Files are loaded.
** {{wiki:PublicMethod.gif|}} MultipleShapeFileFeatureLayer(String,String) ** This is a constructor for the class. == Remarks == With this constructor you can specify differently-named indexes for the layer. If you have one large index, specify its path and filename here. If you have smaller single indexes, use wildcards to specify a pattern to match instead. For example, if you had 50 road Shape Files named C:\Roads\??Roads.shp (where ?? is the two-character state abbreviation), but only one large index, then you would specify a string like "C:\Roads\Roads.idx". If you instead had 50 individual indexes whose names matched the Shape Files, then you would use "C:\Roads\??Roads.idx". == Parameters == * //multipleShapeFilePattern// * Type:String * Description:This parameter is the path and filename matching pattern that determines which Shape Files are loaded. * //indexFilePattern// * Type:String * Description:This parameter is the path and filename matching pattern that determines which index files are loaded.
** {{wiki:PublicMethod.gif|}} MultipleShapeFileFeatureLayer(IEnumerable) ** N/A == Remarks == N/A == Parameters == * //shapeFiles// * Type:IEnumerable * Description:N/A
** {{wiki:PublicMethod.gif|}} MultipleShapeFileFeatureLayer(IEnumerable,IEnumerable) ** This is the constructor for the class. == Remarks == This is the constructor for this class. You can pass in a group of shapes and its corresponding indexs like string[] shapeFiles = new string[] { "C:\CA_counties.shp", "C:\AZ_counties.shp" }; string[] indexFiles = new string[] { "C:\CA_counties.midx", "C:\AZ_counties.midx" }; In this way, the MultipleShapeFileFeatureLayer will construct from the passing 2 shapes. == Parameters == * //shapeFiles// * Type:IEnumerable * Description:This parameter represents the shape files to construct the MultipleShapeFileFeatureLayer. The format of it should be new string[] { "C:\CA_counties.shp", "C:\AZ_counties.shp" }. * //indexes// * Type:IEnumerable * Description:This parameter represents the shape files to construct the ShapeFileFeatureLayer. The format of it should be new string[] { "C:\CA_counties.midx", "C:\AZ_counties.midx" }.
==== Protected Constructors ==== ==== Public Methods ==== ** {{wiki:PublicMethod.gif|}} GetShapePathFileNames() ** This method returns a collection of the Shape Files and their paths that make up the layer. == Remarks == None == Return Value == * Type:Collection * Description:This method returns a collection of the Shape Files and their paths that make up the layer. == Parameters ==
** {{wiki:PublicMethod.gif|}} GetIndexPathFileNames() ** This method returns a collection of the index files and their paths that make up the layer. == Remarks == None == Return Value == * Type:Collection * Description:This method returns a collection of the index files and their paths that make up the layer. == Parameters ==
** {{wiki:PublicMethod.gif|}} RequestDrawing() ** N/A == Remarks == N/A == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} RequestDrawing(RectangleShape) ** N/A == Remarks == N/A == Return Value == * Type:Void * Description:N/A == Parameters == * //extentToRefresh// * Type:[[ThinkGeo.MapSuite.Core.RectangleShape|RectangleShape]] * Description:N/A
** {{wiki:PublicMethod.gif|}} RequestDrawing(IEnumerable) ** N/A == Remarks == N/A == Return Value == * Type:Void * Description:N/A == Parameters == * //extentsToRefresh// * Type:IEnumerable<[[ThinkGeo.MapSuite.Core.RectangleShape|RectangleShape]]> * Description:N/A
** {{wiki:PublicMethod.gif|}} RequestDrawing(TimeSpan) ** N/A == Remarks == N/A == Return Value == * Type:Void * Description:N/A == Parameters == * //bufferTime// * Type:TimeSpan * Description:N/A
** {{wiki:PublicMethod.gif|}} RequestDrawing(TimeSpan,RequestDrawingBufferTimeType) ** N/A == Remarks == N/A == Return Value == * Type:Void * Description:N/A == Parameters == * //bufferTime// * Type:TimeSpan * Description:N/A * //bufferTimeType// * Type:[[ThinkGeo.MapSuite.Core.RequestDrawingBufferTimeType|RequestDrawingBufferTimeType]] * Description:N/A
** {{wiki:PublicMethod.gif|}} RequestDrawing(RectangleShape,TimeSpan) ** N/A == Remarks == N/A == Return Value == * Type:Void * Description:N/A == Parameters == * //extentToRefresh// * Type:[[ThinkGeo.MapSuite.Core.RectangleShape|RectangleShape]] * Description:N/A * //bufferTime// * Type:TimeSpan * Description:N/A
** {{wiki:PublicMethod.gif|}} RequestDrawing(RectangleShape,TimeSpan,RequestDrawingBufferTimeType) ** N/A == Remarks == N/A == Return Value == * Type:Void * Description:N/A == Parameters == * //extentToRefresh// * Type:[[ThinkGeo.MapSuite.Core.RectangleShape|RectangleShape]] * Description:N/A * //bufferTime// * Type:TimeSpan * Description:N/A * //bufferTimeType// * Type:[[ThinkGeo.MapSuite.Core.RequestDrawingBufferTimeType|RequestDrawingBufferTimeType]] * Description:N/A
** {{wiki:PublicMethod.gif|}} RequestDrawing(IEnumerable,TimeSpan) ** N/A == Remarks == N/A == Return Value == * Type:Void * Description:N/A == Parameters == * //extentsToRefresh// * Type:IEnumerable<[[ThinkGeo.MapSuite.Core.RectangleShape|RectangleShape]]> * Description:N/A * //bufferTime// * Type:TimeSpan * Description:N/A
** {{wiki:PublicMethod.gif|}} RequestDrawing(IEnumerable,TimeSpan,RequestDrawingBufferTimeType) ** N/A == Remarks == N/A == Return Value == * Type:Void * Description:N/A == Parameters == * //extentsToRefresh// * Type:IEnumerable<[[ThinkGeo.MapSuite.Core.RectangleShape|RectangleShape]]> * Description:N/A * //bufferTime// * Type:TimeSpan * Description:N/A * //bufferTimeType// * Type:[[ThinkGeo.MapSuite.Core.RequestDrawingBufferTimeType|RequestDrawingBufferTimeType]] * Description:N/A
** {{wiki:PublicMethod.gif|}} GetThreadSafetyLevel() ** N/A == Remarks == N/A == Return Value == * Type:[[ThinkGeo.MapSuite.Core.ThreadSafetyLevel|ThreadSafetyLevel]] * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} CloneDeep() ** N/A == Remarks == N/A == Return Value == * Type:[[ThinkGeo.MapSuite.Core.Layer|Layer]] * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} Open() ** N/A == Remarks == N/A == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} Close() ** N/A == Remarks == N/A == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} GetBoundingBox() ** N/A == Remarks == N/A == Return Value == * Type:[[ThinkGeo.MapSuite.Core.RectangleShape|RectangleShape]] * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} Draw(GeoCanvas,Collection) ** N/A == Remarks == N/A == Return Value == * Type:Void * Description:N/A == Parameters == * //canvas// * Type:[[ThinkGeo.MapSuite.Core.GeoCanvas|GeoCanvas]] * Description:N/A * //labelsInAllLayers// * Type:Collection<[[ThinkGeo.MapSuite.Core.SimpleCandidate|SimpleCandidate]]> * Description:N/A
** {{wiki:PublicMethod.gif|}} ToString() ** N/A == Remarks == N/A == Return Value == * Type:String * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} Equals(Object) ** N/A == Remarks == N/A == Return Value == * Type:Boolean * Description:N/A == Parameters == * //obj// * Type:Object * Description:N/A
** {{wiki:PublicMethod.gif|}} GetHashCode() ** N/A == Remarks == N/A == Return Value == * Type:Int32 * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} GetType() ** N/A == Remarks == N/A == Return Value == * Type:Type * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}}{{wiki:Static.gif|}} BuildIndex(String) ** This method builds a spatial index for the layer. == Remarks == This overload allows you to pass in a Shape File path and filename pattern. It will generate indexes for each Shape File it finds, matching the index file names to the Shape File names. == Return Value == * Type:Void * Description:None == Parameters == * //multipleShapeFilePattern// * Type:String * Description:This parameter is the matching pattern that defines which Shape Files to include.
** {{wiki:PublicMethod.gif|}}{{wiki:Static.gif|}} BuildIndex(String,BuildIndexMode) ** This method builds a spatial index for the layer. == Remarks == This overload allows you to pass in a Shape File path and filename pattern and determines if we re-build index files that already exist. It will generate indexes for each Shape File it finds, matching the index file names to the Shape File names. == Return Value == * Type:Void * Description:None == Parameters == * //multipleShapeFilePattern// * Type:String * Description:This parameter is the matching pattern that defines which Shape Files to include. * //buildIndexMode// * Type:[[ThinkGeo.MapSuite.Core.BuildIndexMode|BuildIndexMode]] * Description:This parameter determines whether an index file will be rebuilt if it already exists.
** {{wiki:PublicMethod.gif|}}{{wiki:Static.gif|}} BuildIndex(String,String) ** This method builds a spatial index for the layer. == Remarks == This overload allows you to pass in a path and filename pattern for Shapes Files and index files. If you use a pattern for the index file name, it will generate indexes for each Shape File it finds, matching the index file names to the Shape File names. Alternatively, if you use a concrete index file name, it will generate one large index instead. If you enter an indexFilePattern like "C:\Roads\??Roads.idx", it will build individual indexes for each Shape File and name them according to the pattern. If you enter an absolute name, like "C:\Roads\Roads.idx", it will create one large index for all of the Shape Files. == Return Value == * Type:Void * Description:None == Parameters == * //multipleShapeFilePattern// * Type:String * Description:This parameter is the matching pattern that defines which Shape Files to include. * //indexFilePattern// * Type:String * Description:This parameter is the matching pattern of how to name the index (or indexes).
** {{wiki:PublicMethod.gif|}}{{wiki:Static.gif|}} BuildIndex(String,String,BuildIndexMode) ** This method builds a spatial index for the layer. == Remarks == This overload allows you to pass in a path and filename pattern for Shapes Files and index files. If you use a pattern for the index file name, it will generate indexes for each Shape File it finds, matching the index file names to the Shape File names. Alternatively, if you use a concrete index file name, it will generate one large index instead. If you enter an indexFilePattern like "C:\Roads\??Roads.idx", it will build individual indexes for each Shape File and name them according to the pattern. If you enter an absolute name, like "C:\Roads\Roads.idx", it will create one large index for all of the Shape Files. == Return Value == * Type:Void * Description:None == Parameters == * //multipleShapeFilePattern// * Type:String * Description:This parameter is the matching pattern that defines which Shape Files to include. * //indexFilePattern// * Type:String * Description:This parameter is the matching pattern of how to name the index (or indexes). * //buildIndexMode// * Type:[[ThinkGeo.MapSuite.Core.BuildIndexMode|BuildIndexMode]] * Description:This parameter determines whether an index file will be rebuilt if it already exists.
** {{wiki:PublicMethod.gif|}}{{wiki:Static.gif|}} BuildIndex(String,String,String,String) ** This method builds a spatial index for the layer. == Remarks == This index-building method is very useful when you have a large number of Shape Files that contain only certain records you want. For example, you may have an individual Shape File for the states of Texas and Florida that contains only those states' roads. They are named TXRoads.shp for Texas and FLRoads.shp for Florida. Inside of these Shape Files there is a column that determines whether the roads are normal streets or highways. You, of course, want to draw highways differently. You could use a ValueStyle, but that would be slow because you'd have to look though all of the records at runtime to determine which are the highways. A better solution is to build a custom index that only has highways in it. In this way, you generate the index once and then runtime performance is fast. In our scenario, we would create an index to include all of the road Shape Files by using the pattern "*Roads.shp". This will make sure we get both the Texas and Florida roads. Next, we specify the RoadType column as the column parameter. Then we provide a regular expression match that picks out all of the highways, and name the resulting index "Highways.idx". We can then build another, separate index just for the normal streets. In this way, we can quickly sort the roads from the highways -- and we didn't have to cut up our Shape Files to do it. == Return Value == * Type:Void * Description:None == Parameters == * //multipleShapeFilePattern// * Type:String * Description:This parameter is the matching pattern that defines which Shape Files to include. * //columnName// * Type:String * Description:This parameter is the column name you want to apply the regular expression towards. * //regularExpression// * Type:String * Description:This parameter is the regular expression you want to use to select certain features for your index. * //indexFilename// * Type:String * Description:This parameter is the name of the index file you want to generate for the features that match the regular expression.
** {{wiki:PublicMethod.gif|}}{{wiki:Static.gif|}} BuildIndex(String,String,String,String,BuildIndexMode) ** This method builds a spatial index for the layer. == Remarks == This index-building method is very useful when you have a large number of Shape Files that contain only certain records you want. For example, you may have an individual Shape File for the states of Texas and Florida that contains only those states' roads. They are named TXRoads.shp for Texas and FLRoads.shp for Florida. Inside of these Shape Files there is a column that determines whether the roads are normal streets or highways. You, of course, want to draw highways differently. You could use a ValueStyle, but that would be slow because you'd have to look though all of the records at runtime to determine which are the highways. A better solution is to build a custom index that only has highways in it. In this way, you generate the index once and then runtime performance is fast. In our scenario, we would create an index to include all of the road Shape Files by using the pattern "*Roads.shp". This will make sure we get both the Texas and Florida roads. Next, we specify the RoadType column as the column parameter. Then we provide a regular expression match that picks out all of the highways, and name the resulting index "Highways.idx". We can then build another, separate index just for the normal streets. In this way, we can quickly sort the roads from the highways -- and we didn't have to cut up our Shape Files to do it. == Return Value == * Type:Void * Description:None == Parameters == * //multipleShapeFilePattern// * Type:String * Description:This parameter is the matching pattern that defines which Shape Files to include. * //columnName// * Type:String * Description:This parameter is the column name you want to apply the regular expression towards. * //regularExpression// * Type:String * Description:This parameter is the regular expression you want to use to select certain features for your index. * //indexFilename// * Type:String * Description:This parameter is the name of the index file you want to generate for the features that match the regular expression. * //buildIndexMode// * Type:[[ThinkGeo.MapSuite.Core.BuildIndexMode|BuildIndexMode]] * Description:This parameter determines whether the index file will be rebuilt if it already exists.
** {{wiki:PublicMethod.gif|}}{{wiki:Static.gif|}} BuildIndex(String[],String[]) ** This method builds a spatial index for the layer. == Remarks == N/A == Return Value == * Type:Void * Description:N/A == Parameters == * //multipleShapeFiles// * Type:String[] * Description:This parameter represents the shape files to construct the MultipleShapeFileFeatureLayer. The format of it should be new string[] { "C:\CA_counties.shp", "C:\AZ_counties.shp" }. * //multipleShapeFileIndexes// * Type:String[] * Description:This parameter represents the shape files to construct the ShapeFileFeatureLayer. The format of it should be new string[] { "C:\CA_counties.midx", "C:\AZ_counties.midx" }.
** {{wiki:PublicMethod.gif|}}{{wiki:Static.gif|}} BuildIndex(String[],String[],BuildIndexMode) ** This method builds a spatial index for the layer. == Remarks == N/A == Return Value == * Type:Void * Description:N/A == Parameters == * //multipleShapeFiles// * Type:String[] * Description:This parameter represents the shape files to construct the MultipleShapeFileFeatureLayer. The format of it should be new string[] { "C:\CA_counties.shp", "C:\AZ_counties.shp" }. * //multipleShapeFileIndexes// * Type:String[] * Description:This parameter represents the shape files to construct the ShapeFileFeatureLayer. The format of it should be new string[] { "C:\CA_counties.midx", "C:\AZ_counties.midx" }. * //buildIndexMode// * Type:[[ThinkGeo.MapSuite.Core.BuildIndexMode|BuildIndexMode]] * Description:N/A
==== Protected Methods ==== ** {{wiki:ProtectedMethod.gif|}} 1BU=(IEnumerable) ** N/A == Remarks == N/A == Return Value == * Type:Boolean * Description:N/A == Parameters == * //returningColumnNames// * Type:IEnumerable * Description:N/A
** {{wiki:ProtectedMethod.gif|}} 1xU=(GeoCanvas,Dictionary>,Collection,ZoomLevel,RectangleShape) ** N/A == Remarks == N/A == Return Value == * Type:Void * Description:N/A == Parameters == * //canvas// * Type:[[ThinkGeo.MapSuite.Core.GeoCanvas|GeoCanvas]] * Description:N/A * //featuresForFilters// * Type:Dictionary> * Description:N/A * //labelsInAllLayers// * Type:Collection<[[ThinkGeo.MapSuite.Core.SimpleCandidate|SimpleCandidate]]> * Description:N/A * //currentZoomLevel// * Type:[[ThinkGeo.MapSuite.Core.ZoomLevel|ZoomLevel]] * Description:N/A * //marginWorldExtent// * Type:[[ThinkGeo.MapSuite.Core.RectangleShape|RectangleShape]] * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnDrawingFeatures(DrawingFeaturesEventArgs) ** N/A == Remarks == N/A == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:[[ThinkGeo.MapSuite.Core.DrawingFeaturesEventArgs|DrawingFeaturesEventArgs]] * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnDrawingWrappingFeatures(DrawingWrappingFeaturesFeatureLayerEventArgs) ** N/A == Remarks == N/A == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:[[ThinkGeo.MapSuite.Core.DrawingWrappingFeaturesFeatureLayerEventArgs|DrawingWrappingFeaturesFeatureLayerEventArgs]] * Description:N/A
** {{wiki:ProtectedMethod.gif|}} DrawCore(GeoCanvas,Collection) ** N/A == Remarks == N/A == Return Value == * Type:Void * Description:N/A == Parameters == * //canvas// * Type:[[ThinkGeo.MapSuite.Core.GeoCanvas|GeoCanvas]] * Description:N/A * //labelsInAllLayers// * Type:Collection<[[ThinkGeo.MapSuite.Core.SimpleCandidate|SimpleCandidate]]> * Description:N/A
** {{wiki:ProtectedMethod.gif|}} SetupTools() ** N/A == Remarks == N/A == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} SetupToolsCore() ** N/A == Remarks == N/A == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} OpenCore() ** N/A == Remarks == N/A == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} CloseCore() ** N/A == Remarks == N/A == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} GetBoundingBoxCore() ** N/A == Remarks == N/A == Return Value == * Type:[[ThinkGeo.MapSuite.Core.RectangleShape|RectangleShape]] * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} OnRequestedDrawing(RequestedDrawingLayerEventArgs) ** N/A == Remarks == N/A == Return Value == * Type:Void * Description:N/A == Parameters == * //eventArgs// * Type:[[ThinkGeo.MapSuite.Core.RequestedDrawingLayerEventArgs|RequestedDrawingLayerEventArgs]] * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnRequestingDrawing(RequestingDrawingLayerEventArgs) ** N/A == Remarks == N/A == Return Value == * Type:Void * Description:N/A == Parameters == * //eventArgs// * Type:[[ThinkGeo.MapSuite.Core.RequestingDrawingLayerEventArgs|RequestingDrawingLayerEventArgs]] * Description:N/A
** {{wiki:ProtectedMethod.gif|}} GetThreadSafetyLevelCore() ** N/A == Remarks == N/A == Return Value == * Type:[[ThinkGeo.MapSuite.Core.ThreadSafetyLevel|ThreadSafetyLevel]] * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} CloneDeepCore() ** N/A == Remarks == N/A == Return Value == * Type:[[ThinkGeo.MapSuite.Core.Layer|Layer]] * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} DrawException(GeoCanvas,Exception) ** N/A == Remarks == N/A == Return Value == * Type:Void * Description:N/A == Parameters == * //canvas// * Type:[[ThinkGeo.MapSuite.Core.GeoCanvas|GeoCanvas]] * Description:N/A * //e// * Type:Exception * Description:N/A
** {{wiki:ProtectedMethod.gif|}} DrawExceptionCore(GeoCanvas,Exception) ** N/A == Remarks == N/A == Return Value == * Type:Void * Description:N/A == Parameters == * //canvas// * Type:[[ThinkGeo.MapSuite.Core.GeoCanvas|GeoCanvas]] * Description:N/A * //e// * Type:Exception * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnDrawingException(DrawingExceptionLayerEventArgs) ** N/A == Remarks == N/A == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:[[ThinkGeo.MapSuite.Core.DrawingExceptionLayerEventArgs|DrawingExceptionLayerEventArgs]] * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnDrawnException(DrawnExceptionLayerEventArgs) ** N/A == Remarks == N/A == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:[[ThinkGeo.MapSuite.Core.DrawnExceptionLayerEventArgs|DrawnExceptionLayerEventArgs]] * Description:N/A
** {{wiki:ProtectedMethod.gif|}} DrawAttributionCore(GeoCanvas,String) ** N/A == Remarks == N/A == Return Value == * Type:Void * Description:N/A == Parameters == * //canvas// * Type:[[ThinkGeo.MapSuite.Core.GeoCanvas|GeoCanvas]] * Description:N/A * //attribution// * Type:String * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnDrawingAttribution(DrawingAttributionLayerEventArgs) ** N/A == Remarks == N/A == Return Value == * Type:Void * Description:N/A == Parameters == * //args// * Type:[[ThinkGeo.MapSuite.Core.DrawingAttributionLayerEventArgs|DrawingAttributionLayerEventArgs]] * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnDrawnAttribution(DrawnAttributionLayerEventArgs) ** N/A == Remarks == N/A == Return Value == * Type:Void * Description:N/A == Parameters == * //args// * Type:[[ThinkGeo.MapSuite.Core.DrawnAttributionLayerEventArgs|DrawnAttributionLayerEventArgs]] * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnDrawingProgressChanged(DrawingProgressChangedEventArgs) ** N/A == Remarks == N/A == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:[[ThinkGeo.MapSuite.Core.DrawingProgressChangedEventArgs|DrawingProgressChangedEventArgs]] * Description:N/A
** {{wiki:ProtectedMethod.gif|}} Finalize() ** N/A == Remarks == N/A == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} MemberwiseClone() ** N/A == Remarks == N/A == Return Value == * Type:Object * Description:N/A == Parameters ==
==== Public Properties ==== ** {{wiki:PublicProperty.gif|}} ShapeFiles ** N/A == Remarks == N/A == Return Value == * Type:Collection ** {{wiki:PublicProperty.gif|}} Indexes ** N/A == Remarks == N/A == Return Value == * Type:Collection ** {{wiki:PublicProperty.gif|}} MultipleShapeFilePattern ** This property gets and sets the Shape File pattern that makes up this layer. == Remarks == None == Return Value == * Type:String ** {{wiki:PublicProperty.gif|}} IndexFilePattern ** This property gets and sets the index file pattern that makes up this layer. == Remarks == None == Return Value == * Type:String ** {{wiki:PublicProperty.gif|}} Encoding ** This property gets and sets the encoding information for the DBF. == Remarks == N/A == Return Value == * Type:Encoding ** {{wiki:PublicProperty.gif|}} HasBoundingBox ** This property checks to see if a Layer has a BoundingBox or not. If it has no BoundingBox, it will throw an exception when you call the GetBoundingBox() and GetFullExtent() APIs. In MultipleShapeFeatureLayer, we override this API and mark it as true. == Remarks == The default implementation in the base class returns false. == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} WrappingExtent ** N/A == Remarks == N/A == Return Value == * Type:[[ThinkGeo.MapSuite.Core.RectangleShape|RectangleShape]] ** {{wiki:PublicProperty.gif|}} WrappingMode ** N/A == Remarks == N/A == Return Value == * Type:[[ThinkGeo.MapSuite.Core.WrappingMode|WrappingMode]] ** {{wiki:PublicProperty.gif|}} EditTools ** N/A == Remarks == N/A == Return Value == * Type:[[ThinkGeo.MapSuite.Core.EditTools|EditTools]] ** {{wiki:PublicProperty.gif|}} FeatureIdsToExclude ** N/A == Remarks == N/A == Return Value == * Type:Collection ** {{wiki:PublicProperty.gif|}} QueryTools ** N/A == Remarks == N/A == Return Value == * Type:[[ThinkGeo.MapSuite.Core.QueryTools|QueryTools]] ** {{wiki:PublicProperty.gif|}} MaxRecordsToDraw ** N/A == Remarks == N/A == Return Value == * Type:Int32 ** {{wiki:PublicProperty.gif|}} FeatureSource ** N/A == Remarks == N/A == Return Value == * Type:[[ThinkGeo.MapSuite.Core.FeatureSource|FeatureSource]] ** {{wiki:PublicProperty.gif|}} DrawingQuality ** N/A == Remarks == N/A == Return Value == * Type:[[ThinkGeo.MapSuite.Core.DrawingQuality|DrawingQuality]] ** {{wiki:PublicProperty.gif|}} ZoomLevelSet ** N/A == Remarks == N/A == Return Value == * Type:[[ThinkGeo.MapSuite.Core.ZoomLevelSet|ZoomLevelSet]] ** {{wiki:PublicProperty.gif|}} DrawingMarginPercentage ** N/A == Remarks == N/A == Return Value == * Type:Double ** {{wiki:PublicProperty.gif|}} DrawingMarginInPixel ** N/A == Remarks == N/A == Return Value == * Type:Single ** {{wiki:PublicProperty.gif|}} GeometryValidationMode ** N/A == Remarks == N/A == Return Value == * Type:[[ThinkGeo.MapSuite.Core.GeometryValidationMode|GeometryValidationMode]] ** {{wiki:PublicProperty.gif|}} RequestDrawingInterval ** N/A == Remarks == N/A == Return Value == * Type:TimeSpan ** {{wiki:PublicProperty.gif|}} IsOpen ** N/A == Remarks == N/A == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} DrawingTime ** N/A == Remarks == N/A == Return Value == * Type:TimeSpan ** {{wiki:PublicProperty.gif|}} Name ** N/A == Remarks == N/A == Return Value == * Type:String ** {{wiki:PublicProperty.gif|}} Attribution ** N/A == Remarks == N/A == Return Value == * Type:String ** {{wiki:PublicProperty.gif|}} IsVisible ** N/A == Remarks == N/A == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} Transparency ** N/A == Remarks == N/A == Return Value == * Type:Single ** {{wiki:PublicProperty.gif|}} BlueTranslation ** N/A == Remarks == N/A == Return Value == * Type:Single ** {{wiki:PublicProperty.gif|}} RedTranslation ** N/A == Remarks == N/A == Return Value == * Type:Single ** {{wiki:PublicProperty.gif|}} GreenTranslation ** N/A == Remarks == N/A == Return Value == * Type:Single ** {{wiki:PublicProperty.gif|}} KeyColors ** N/A == Remarks == N/A == Return Value == * Type:Collection<[[ThinkGeo.MapSuite.Core.GeoColor|GeoColor]]> ** {{wiki:PublicProperty.gif|}} IsNegative ** N/A == Remarks == N/A == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} IsGrayscale ** N/A == Remarks == N/A == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} DrawingExceptionMode ** N/A == Remarks == N/A == Return Value == * Type:[[ThinkGeo.MapSuite.Core.DrawingExceptionMode|DrawingExceptionMode]] ==== Protected Properties ==== ** {{wiki:ProtectedProperty.gif|}} yhU= ** N/A == Remarks == N/A == Return Value == * Type:Int64 ** {{wiki:ProtectedProperty.gif|}} zRU= ** N/A == Remarks == N/A == Return Value == * Type:Int64 ** {{wiki:ProtectedProperty.gif|}} 0BU= ** N/A == Remarks == N/A == Return Value == * Type:TimeSpan ** {{wiki:ProtectedProperty.gif|}} 0xU= ** N/A == Remarks == N/A == Return Value == * Type:TimeSpan ** {{wiki:ProtectedProperty.gif|}} IsOpenCore ** N/A == Remarks == N/A == Return Value == * Type:Boolean ==== Public Events ==== ** {{wiki:PublicEvent.gif|}} DrawingFeatures ** N/A == Remarks == N/A Event Arguments:[[ThinkGeo.MapSuite.Core.DrawingFeaturesEventArgs|DrawingFeaturesEventArgs]] ** {{wiki:PublicEvent.gif|}} DrawingWrappingFeatures ** N/A == Remarks == N/A Event Arguments:[[ThinkGeo.MapSuite.Core.DrawingWrappingFeaturesFeatureLayerEventArgs|DrawingWrappingFeaturesFeatureLayerEventArgs]] ** {{wiki:PublicEvent.gif|}} RequestedDrawing ** N/A == Remarks == N/A Event Arguments:[[ThinkGeo.MapSuite.Core.RequestedDrawingLayerEventArgs|RequestedDrawingLayerEventArgs]] ** {{wiki:PublicEvent.gif|}} RequestingDrawing ** N/A == Remarks == N/A Event Arguments:[[ThinkGeo.MapSuite.Core.RequestingDrawingLayerEventArgs|RequestingDrawingLayerEventArgs]] ** {{wiki:PublicEvent.gif|}} DrawingProgressChanged ** N/A == Remarks == N/A Event Arguments:[[ThinkGeo.MapSuite.Core.DrawingProgressChangedEventArgs|DrawingProgressChangedEventArgs]] ** {{wiki:PublicEvent.gif|}} DrawingException ** N/A == Remarks == N/A Event Arguments:[[ThinkGeo.MapSuite.Core.DrawingExceptionLayerEventArgs|DrawingExceptionLayerEventArgs]] ** {{wiki:PublicEvent.gif|}} DrawnException ** N/A == Remarks == N/A Event Arguments:[[ThinkGeo.MapSuite.Core.DrawnExceptionLayerEventArgs|DrawnExceptionLayerEventArgs]] ** {{wiki:PublicEvent.gif|}} DrawingAttribution ** N/A == Remarks == N/A Event Arguments:[[ThinkGeo.MapSuite.Core.DrawingAttributionLayerEventArgs|DrawingAttributionLayerEventArgs]] ** {{wiki:PublicEvent.gif|}} DrawnAttribution ** N/A == Remarks == N/A Event Arguments:[[ThinkGeo.MapSuite.Core.DrawnAttributionLayerEventArgs|DrawnAttributionLayerEventArgs]]