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

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

Returns the height in pixels of the specified tile-component.
public getTileCompHeight ( int t, int c ) : int
t int The tile index. /// ///
c int The index of the component, from 0 to N-1. /// ///
Результат int
        public override int getTileCompHeight(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 compH[c];
        }