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

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

public getTileCompWidth ( int t, int c ) : int
t int
c int
Результат int
        public int getTileCompWidth(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.w;
        }