C# Class SwfDotNet.IO.Tags.BaseTagCollection

Base Tag collection
Inheritance: System.Collections.CollectionBase
Afficher le fichier Open project: bladecoding/SwfExport Class Usage Examples

Méthodes publiques

Méthode Description
Add ( BaseTag value ) : BaseTag

Add a base tag

AddRange ( BaseTag values ) : void

Add an array of base tag

AddRange ( BaseTagCollection values ) : void

Adds the range.

BaseTagCollection ( ) : System

Constructor

Clear ( ) : void

Clear collection

Contains ( BaseTag value ) : bool

Test if list contain a base tag

GetLastOne ( ) : BaseTag

Gets the last BaseTag of the collection.

IndexOf ( BaseTag value ) : int

Get index of a base tag

Insert ( int index, BaseTag value ) : void

Insert a base tag at

Remove ( BaseTag value ) : void

Remove a base tag

ToArray ( ) : SwfDotNet.IO.Tags.BaseTag[]

Convert collection to array

this ( int index ) : BaseTag

Access base tag list by index

Method Details

Add() public méthode

Add a base tag
public Add ( BaseTag value ) : BaseTag
value BaseTag base tag to add
Résultat BaseTag

AddRange() public méthode

Add an array of base tag
public AddRange ( BaseTag values ) : void
values BaseTag base tag array
Résultat void

AddRange() public méthode

Adds the range.
public AddRange ( BaseTagCollection values ) : void
values BaseTagCollection The values.
Résultat void

BaseTagCollection() public méthode

Constructor
public BaseTagCollection ( ) : System
Résultat System

Clear() public méthode

Clear collection
public Clear ( ) : void
Résultat void

Contains() public méthode

Test if list contain a base tag
public Contains ( BaseTag value ) : bool
value BaseTag base tag
Résultat bool

GetLastOne() public méthode

Gets the last BaseTag of the collection.
public GetLastOne ( ) : BaseTag
Résultat BaseTag

IndexOf() public méthode

Get index of a base tag
public IndexOf ( BaseTag value ) : int
value BaseTag base tag
Résultat int

Insert() public méthode

Insert a base tag at
public Insert ( int index, BaseTag value ) : void
index int index
value BaseTag base tag
Résultat void

Remove() public méthode

Remove a base tag
public Remove ( BaseTag value ) : void
value BaseTag
Résultat void

ToArray() public méthode

Convert collection to array
public ToArray ( ) : SwfDotNet.IO.Tags.BaseTag[]
Résultat SwfDotNet.IO.Tags.BaseTag[]

this() public méthode

Access base tag list by index
public this ( int index ) : BaseTag
index int
Résultat BaseTag