CSJ2K.Util.PortableImageSource.getTileCompHeight C# (CSharp) Метод

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

public getTileCompHeight ( int t, int c ) : int
t int
c int
Результат int
        public int getTileCompHeight(int t, int c)
        {
            if (t != 0)
            {
                throw new System.InvalidOperationException("Asking a tile-component width for a tile index" + " greater than 0 whereas there is only one tile");
            }
            return this.h;
        }