iTextSharp.text.Row.GetElementID C# (CSharp) Метод

GetElementID() приватный Метод

Returns the type-id of the element in a Row.
private GetElementID ( int column ) : int
column int the column of which you'd like to know the type
Результат int
        int GetElementID(int column)
        {
            if (cells[column] == null) return NULL;
            else if (cells[column] is Cell) return CELL;
            else if (cells[column] is Table) return TABLE;

            return -1;
        }