Packageispring.presenter.presentation.resources.references
Interfacepublic interface IReferences

Language Version : ActionScript 3.0
Product Versions : iSpring Pro 6.0.3, iSpring Platform 6.0
Runtime Versions : AIR 1.0, Flash Player 10.1

The IReferences interface represents a collection of the presentation references. A reference is a hyperlink or a file attachment associated with the presentation.

See also

ispring.presenter.presentation.resources.IResources.references
ispring.presenter.presentation.resources.references.IReference


Public Properties
PropertyDefined By
count : uint
[read-only] Returns the number of references in the collection.
IReferences
Public Methods
MethodDefined By
 
Returns the reference that exists at the specified index.
IReferences
Property Detail
countproperty
count:uint  [read-only]

Language Version : ActionScript 3.0
Product Versions : iSpring Pro 6.0.3, iSpring Platform 6.0
Runtime Versions : AIR 1.0, Flash Player 10.1

Returns the number of references in the collection.


Implementation
    public function get count():uint

See also

Method Detail
getReference()method
public function getReference(index:uint):IReference

Language Version : ActionScript 3.0
Product Versions : iSpring Pro 6.0.3, iSpring Platform 6.0
Runtime Versions : AIR 1.0, Flash Player 10.1

Returns the reference that exists at the specified index.

Parameters

index:uint — The index of the reference. The index value must be in the range from 0 to the number of references minus 1.

Returns
IReference — The reference at the specified index position.

Throws
RangeError — Throws if the specified index is out of range.

See also