Re: (NSBrowser) Getting selected cell's column
Re: (NSBrowser) Getting selected cell's column
- Subject: Re: (NSBrowser) Getting selected cell's column
- From: Sam Goldman <email@hidden>
- Date: Sun, 06 Jan 2002 18:01:39 -0800
That isn't enough for my problem, though. -selectedCells wouldn't work
because I would have no way of telling which column the cells are in.
-selectedCellInColumn: wouldn't work because I have no way of knowing if
it's the rightmost column
- Sam
On 1/6/02 5:57 PM, "John Harte" <email@hidden> wrote:
>
Try
>
- (id) selectedCellInColumn: (int) column
>
Returns the last (lowest) NSCell selected in column.
>
>
or
>
>
- (NSArray*) selectedCells
>
Returns all cells selected in the rightmost column.
>
>
John
>
>
On Sunday, January 6, 2002, at 08:31 PM, Sam Goldman wrote:
>
>
> So far, I have not found any way to get the column of the rightmost
>
> selected
>
> cell. Does anyone here have any ideas?