BrightIdeasSoftware.ObjectListView.CalculateCellTextBounds C# (CSharp) Method

CalculateCellTextBounds() public method

Return the bounds of the given cell only until the edge of the current text
public CalculateCellTextBounds ( BrightIdeasSoftware.OLVListItem item, int subItemIndex ) : Rectangle
item BrightIdeasSoftware.OLVListItem The row to be edited
subItemIndex int The index of the cell to be edited
return System.Drawing.Rectangle
        public virtual Rectangle CalculateCellTextBounds(OLVListItem item, int subItemIndex)
        {
            return this.CalculateCellBounds(item, subItemIndex, ItemBoundsPortion.ItemOnly);
        }
ObjectListView