BitMiracle.Tiff2Pdf.T2P.tile_is_bottom_edge C# (CSharp) Method

tile_is_bottom_edge() private static method

private static tile_is_bottom_edge ( T2P_PAGE tiles, int tile ) : bool
tiles T2P_PAGE
tile int
return bool
        private static bool tile_is_bottom_edge(T2P_PAGE tiles, int tile)
        {
            if (((tile + 1) > (tiles.page_tilecount - tiles.tiles_tilecountx)) && (tiles.tiles_edgetilelength != 0))
                return true;

            return false;
        }