Struct NpgsqlBox
Represents a PostgreSQL box type.
Assembly: Npgsql.dll
Syntax
public struct NpgsqlBox : IEquatable<NpgsqlBox>
Constructors
|
Improve this Doc
NpgsqlBox(NpgsqlPoint, NpgsqlPoint)
Declaration
public NpgsqlBox(NpgsqlPoint upperRight, NpgsqlPoint lowerLeft)
Parameters
|
Improve this Doc
NpgsqlBox(Double, Double, Double, Double)
Declaration
public NpgsqlBox(double top, double right, double bottom, double left)
Parameters
Properties
|
Improve this Doc
Bottom
Declaration
public readonly double Bottom { get; }
Property Value
|
Improve this Doc
Height
Declaration
public readonly double Height { get; }
Property Value
|
Improve this Doc
IsEmpty
Declaration
public readonly bool IsEmpty { get; }
Property Value
|
Improve this Doc
Left
Declaration
public readonly double Left { get; }
Property Value
|
Improve this Doc
LowerLeft
Declaration
public NpgsqlPoint LowerLeft { readonly get; set; }
Property Value
|
Improve this Doc
Right
Declaration
public readonly double Right { get; }
Property Value
|
Improve this Doc
Top
Declaration
public readonly double Top { get; }
Property Value
|
Improve this Doc
UpperRight
Declaration
public NpgsqlPoint UpperRight { readonly get; set; }
Property Value
|
Improve this Doc
Width
Declaration
public readonly double Width { get; }
Property Value
Methods
|
Improve this Doc
Equals(NpgsqlBox)
Declaration
public bool Equals(NpgsqlBox other)
Parameters
Returns
|
Improve this Doc
Equals(Object)
Declaration
public override bool Equals(object obj)
Parameters
Type |
Name |
Description |
Object |
obj |
|
Returns
Overrides
|
Improve this Doc
GetHashCode()
Declaration
public override int GetHashCode()
Returns
Overrides
|
Improve this Doc
Parse(String)
Declaration
public static NpgsqlBox Parse(string s)
Parameters
Type |
Name |
Description |
String |
s |
|
Returns
|
Improve this Doc
ToString()
Declaration
public override string ToString()
Returns
Overrides
Operators
|
Improve this Doc
Equality(NpgsqlBox, NpgsqlBox)
Declaration
public static bool operator ==(NpgsqlBox x, NpgsqlBox y)
Parameters
Returns
|
Improve this Doc
Inequality(NpgsqlBox, NpgsqlBox)
Declaration
public static bool operator !=(NpgsqlBox x, NpgsqlBox y)
Parameters
Returns
Implements