Class ReferencedGrid
Represents a referenced grid location with a graph as a reference.
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: System.Dynamic.ExpandoObject
Assembly: cs.temp.dll.dll
Syntax
public class ReferencedGrid : ReferencedLocation
Remarks
The reference graph play no part here, a grid is just a grid.
Properties
Columns
Gets or sets the number of columns.
Declaration
public int Columns { get; set; }
Property Value
System.Int32
|
LowerLeftLatitude
Gets or sets the lower left latitude.
Declaration
public double LowerLeftLatitude { get; set; }
Property Value
System.Double
|
LowerLeftLongitude
Gets or sets the lower left longitude.
Declaration
public double LowerLeftLongitude { get; set; }
Property Value
System.Double
|
Rows
Gets or sets the number of rows.
Declaration
public int Rows { get; set; }
Property Value
System.Int32
|
UpperRightLatitude
Gets or sets the upper right latitude.
Declaration
public double UpperRightLatitude { get; set; }
Property Value
System.Double
|
UpperRightLongitude
Gets or sets the upper right longitude.
Declaration
public double UpperRightLongitude { get; set; }
Property Value
System.Double
|
Methods
Clone()
Creates a new object that is a copy of the current instance.
Declaration
public override object Clone()
Returns
System.Object
|