CSJ2K.j2k.ModuleSpec.getTileCompVal C# (CSharp) Method

getTileCompVal() public method

Gets value of specified tile-component. This method calls getSpec but has a public access.
public getTileCompVal ( int t, int c ) : Object
t int Tile index /// ///
c int Component index /// ///
return System.Object
        public virtual System.Object getTileCompVal(int t, int c)
        {
            if (specType != SPEC_TYPE_TILE_COMP)
            {
                throw new System.InvalidOperationException("Illegal use of ModuleSpec class");
            }
            return getSpec(t, c);
        }