C# Class SuperMap.Connector.Utility.Rectangle.Rectangle

Inheritance: ISerializable
Mostra file Open project: SuperMap/iClient-for-DotNet

Private Properties

Property Type Description
Rectangle System

Public Methods

Method Description
ISerializable ( SerializationInfo info, StreamingContext context ) : void
Rectangle ( ) : System

构造函数。

Rectangle ( System.Point leftTop, System.Point rightBottom ) : System

带参的构造函数。

Rectangle ( Rectangle rect ) : System

拷贝的构造函数。

Rectangle ( int left, int top, int right, int bottom ) : System

带参的构造函数。

Private Methods

Method Description
Rectangle ( SerializationInfo info, StreamingContext context ) : System

Method Details

ISerializable() public method

public ISerializable ( SerializationInfo info, StreamingContext context ) : void
info System.Runtime.Serialization.SerializationInfo
context System.Runtime.Serialization.StreamingContext
return void

Rectangle() public method

构造函数。
public Rectangle ( ) : System
return System

Rectangle() public method

带参的构造函数。
public Rectangle ( System.Point leftTop, System.Point rightBottom ) : System
leftTop System.Point 左上角点对象。
rightBottom System.Point 右下角点对象。
return System

Rectangle() public method

拷贝的构造函数。
public Rectangle ( Rectangle rect ) : System
rect Rectangle 矩形类对象。
return System

Rectangle() public method

带参的构造函数。
public Rectangle ( int left, int top, int right, int bottom ) : System
left int 左上角X坐标。
top int 左上角Y坐标。
right int 右下角X坐标。
bottom int 右下角Y坐标。
return System