System.Windows.Forms.ListBox.ListboxDataSource.GetObjectValue C# (CSharp) Method

GetObjectValue() public method

public GetObjectValue ( MonoMac.AppKit.NSTableView tableView, NSTableColumn tableColumn, int row ) : NSObject
tableView MonoMac.AppKit.NSTableView
tableColumn NSTableColumn
row int
return MonoMac.Foundation.NSObject
			public override NSObject GetObjectValue (NSTableView tableView, NSTableColumn tableColumn, int row)
			{
				if(lbox == null)
					return null;
				if(string.IsNullOrEmpty(lbox.DisplayMember))
					returnString = new NSString(dataArray[row].ToString());
				else
					returnString =  new NSString(Util.GetPropertyStringValue(dataArray[row],lbox.DisplayMember));
				if(tableColumn.DataCell is DataGridViewButtonCell)
					(tableColumn.DataCell as DataGridViewButtonCell).Text = returnString;
				return returnString;
				
			}
			public override int GetRowCount (NSTableView tableView)