C# Class SwfDotNet.IO.SwfCollection

SwfCollection is a typed collection of Swf objects.
This class is not used by other classes of the SwfDotNet.IO package, but be usefull.
Inheritance: System.Collections.CollectionBase
Show file Open project: bladecoding/SwfExport

Public Methods

Method Description
Add ( Swf value ) : Swf

Add a base tag

AddRange ( Swf values ) : void

Add an array of swf

Clear ( ) : void

Clear collection

Contains ( Swf value ) : bool

Test if list contain a swf

GetLastOne ( ) : Swf

Gets the last swf of the collection.

IndexOf ( Swf value ) : int

Get index of a swf

Insert ( int index, Swf value ) : void

Insert a swf at

Remove ( Swf value ) : void

Remove a swf

SwfCollection ( ) : System

Constructor

ToArray ( ) : Swf[]

Convert collection to array

this ( int index ) : Swf

Access swf list by index

Method Details

Add() public method

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

AddRange() public method

Add an array of swf
public AddRange ( Swf values ) : void
values Swf swf array
return void

Clear() public method

Clear collection
public Clear ( ) : void
return void

Contains() public method

Test if list contain a swf
public Contains ( Swf value ) : bool
value Swf swf
return bool

GetLastOne() public method

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

IndexOf() public method

Get index of a swf
public IndexOf ( Swf value ) : int
value Swf swf
return int

Insert() public method

Insert a swf at
public Insert ( int index, Swf value ) : void
index int index
value Swf swf
return void

Remove() public method

Remove a swf
public Remove ( Swf value ) : void
value Swf
return void

SwfCollection() public method

Constructor
public SwfCollection ( ) : System
return System

ToArray() public method

Convert collection to array
public ToArray ( ) : Swf[]
return Swf[]

this() public method

Access swf list by index
public this ( int index ) : Swf
index int
return Swf