C# 클래스 SuperMap.Connector.Utility.LayerCollection.LayerCollection

상속: IEnumerable, ISerializable
파일 보기 프로젝트 열기: SuperMap/iClient-for-DotNet

Private Properties

프로퍼티 타입 설명
LayerCollection System

공개 메소드들

메소드 설명
Add ( Layer item ) : void

往图层集中增加一个图层对象。

Clear ( ) : void

清除集合中所有项。

Contains ( Layer item ) : bool

图层集合中是否包含指定的图层。

GetEnumerator ( ) : IEnumerator

返回一个循环访问集合的枚举器。

ISerializable ( SerializationInfo info, StreamingContext context ) : void
IndexOf ( Layer item ) : int

搜索指定的对象,并返回整个 LayerCollection中第一个匹配项的从零开始的索引。

Insert ( int index, Layer item ) : void

根据指定的索引将图层对象插入到指定的位置。

LayerCollection ( ) : System

默认的构造函数。

RemoveAt ( int index ) : void

移除指定位置的图层。

this ( int index ) : Layer

根据索引获取对象。

비공개 메소드들

메소드 설명
LayerCollection ( SerializationInfo info, StreamingContext context ) : System

메소드 상세

Add() 공개 메소드

往图层集中增加一个图层对象。
public Add ( Layer item ) : void
item Layer 图层对象。
리턴 void

Clear() 공개 메소드

清除集合中所有项。
public Clear ( ) : void
리턴 void

Contains() 공개 메소드

图层集合中是否包含指定的图层。
public Contains ( Layer item ) : bool
item Layer 指定的图层对象。
리턴 bool

GetEnumerator() 공개 메소드

返回一个循环访问集合的枚举器。
public GetEnumerator ( ) : IEnumerator
리턴 IEnumerator

ISerializable() 공개 메소드

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

IndexOf() 공개 메소드

搜索指定的对象,并返回整个 LayerCollection中第一个匹配项的从零开始的索引。
public IndexOf ( Layer item ) : int
item Layer 查找的对象。
리턴 int

Insert() 공개 메소드

根据指定的索引将图层对象插入到指定的位置。
public Insert ( int index, Layer item ) : void
index int 图层索引。
item Layer 图层对象。
리턴 void

LayerCollection() 공개 메소드

默认的构造函数。
public LayerCollection ( ) : System
리턴 System

RemoveAt() 공개 메소드

移除指定位置的图层。
public RemoveAt ( int index ) : void
index int 移除索引号。
리턴 void

this() 공개 메소드

根据索引获取对象。
public this ( int index ) : Layer
index int 索引。
리턴 Layer