CSJ2K.j2k.roi.encoder.ROIScaler.setTile C# (CSharp) Метод

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

Changes the current tile, given the new indexes. An IllegalArgumentException is thrown if the indexes do not correspond to a valid tile.
public setTile ( int x, int y ) : void
x int The horizontal index of the tile. /// ///
y int The vertical index of the new tile. /// ///
Результат void
        public override void setTile(int x, int y)
        {
            base.setTile(x, y);
            if (roi)
                mg.tileChanged();
        }