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

isTileCompSpecified() public method

Whether or not a tile-component specification has been defined
public isTileCompSpecified ( int t, int c ) : bool
t int Tile index /// ///
c int Component index /// ///
return bool
        public virtual bool isTileCompSpecified(int t, int c)
        {
            if (tileCompVal == null || tileCompVal["t" + t + "c" + c] == null)
            {
                return false;
            }
            else
            {
                return true;
            }
        }