DataSet.Bounds Property
Gets or sets the bounding rectangle of the dataset.
Syntax
public Rectangle Bounds { get; set; }
Property Value
Default: Differs depending on type. See the table below.
A rectangle, in the coordinate reference system of the dataset, specifying the minimum bounding box covering all features in the dataset.
Default values
Example
// Get the data bounds in Wgs84LongLat from the data set
public static Rectangle GetDataBoundsInWgs84LongLat(DataSet dataSet)
{
return dataSet.Crs.ProjectTo(Crs.Wgs84LongLat, dataSet.Bounds).Bounds;
}
Platforms
Windows, Linux, Android