C# Class SwfDotNet.IO.Tags.BaseTagCollection

Base Tag collection
Inheritance: System.Collections.CollectionBase
Show file Open project: bladecoding/SwfExport Class Usage Examples

Public Methods

Method 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 method

Add a base tag
public Add ( BaseTag value ) : BaseTag
value BaseTag base tag to add
return BaseTag

AddRange() public method

Add an array of base tag
public AddRange ( BaseTag values ) : void
values BaseTag base tag array
return void

AddRange() public method

Adds the range.
public AddRange ( BaseTagCollection values ) : void
values BaseTagCollection The values.
return void

BaseTagCollection() public method

Constructor
public BaseTagCollection ( ) : System
return System

Clear() public method

Clear collection
public Clear ( ) : void
return void

Contains() public method

Test if list contain a base tag
public Contains ( BaseTag value ) : bool
value BaseTag base tag
return bool

GetLastOne() public method

Gets the last BaseTag of the collection.
public GetLastOne ( ) : BaseTag
return BaseTag

IndexOf() public method

Get index of a base tag
public IndexOf ( BaseTag value ) : int
value BaseTag base tag
return int

Insert() public method

Insert a base tag at
public Insert ( int index, BaseTag value ) : void
index int index
value BaseTag base tag
return void

Remove() public method

Remove a base tag
public Remove ( BaseTag value ) : void
value BaseTag
return void

ToArray() public method

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

this() public method

Access base tag list by index
public this ( int index ) : BaseTag
index int
return BaseTag