CSJ2K.j2k.image.Tiler.getTileCompWidth C# (CSharp) Метод

getTileCompWidth() публичный Метод

Returns the width in pixels of the specified tile-component.
public getTileCompWidth ( int t, int c ) : int
t int Tile index /// ///
c int The index of the component, from 0 to N-1. /// ///
Результат int
        public override int getTileCompWidth(int t, int c)
        {
            if (t != TileIdx)
            {
                throw new System.InvalidOperationException(
                    "Asking the width of a tile-component which is " + "not in the current tile (call setTile() or "
                    + "nextTile() methods before).");
            }
            return compW[c];
        }