Recurity.Swf.TagHandler.SoundInfo.this C# (CSharp) Method

this() public method

* Envelope Points *
public this ( byte i ) : SoundEnvelope
i byte
return SoundEnvelope
        public SoundEnvelope this[byte i]
        {
            get
            {
                if (hasEnvelope && i < _envelopePoints)
                    return _envelopeRecords[i];
                else
                    return null;
            }
        }