iTextSharp.text.io.GroupedRandomAccessSource.GetStartingSourceIndex C# (CSharp) Method

GetStartingSourceIndex() protected method

protected GetStartingSourceIndex ( long offset ) : int
offset long
return int
        protected internal virtual int GetStartingSourceIndex(long offset){
            if (offset >= currentSourceEntry.firstByte)
                return currentSourceEntry.index;

            return 0;
        }