BrightIdeasSoftware.ObjectListView.SelectObject C# (CSharp) Method

SelectObject() public method

Select the row that is displaying the given model object, in addition to any current selection.
Use the SelectedObject property to deselect all other rows
public SelectObject ( object modelObject ) : void
modelObject object The object to be selected
return void
        public virtual void SelectObject(object modelObject)
        {
            this.SelectObject(modelObject, false);
        }

Same methods

ObjectListView::SelectObject ( object modelObject, bool setFocus ) : void
ObjectListView