Result: returns the corner view of the spreadsheet- (NSView*)cornerView;
- (id)currentWorksheet;
returns the worksheet currently being displayed by the spreadsheet
Result: returns the current worksheet object- (BOOL)headerLabelsEditable;
returns a boolean value indicating whether the row and column header labels are editable
Result: returns a BOOL, YES = headers can be edited, NO = headers cannot be edited- (NSView*)lowerLeftView;
this method returns the view being used to fill the lower left corner of the spreadsheet
Result: returns the lower left view of the spreadsheet- (id)newWorksheet:(NSString*)label;
This method creates and returns a new worksheet after setting it as the current worksheet of the spreadsheet
Result: returns the new worksheet
Name Description label an NSString* holding the name of the new worksheet
- (void)setCornerView:(NSView*)aView;
Use this method to change the upper left corner of the spreadsheet to a custom view
Name Description aView the view to be placed in the upper left corner
- (void)setCurrentWorksheet:(RRSSWorksheet*)worksheet;
tells the spreadsheet to set the 'worksheet' object as the currently displayed worksheet in the spreadsheet view
Name Description worksheet the RRSSWorksheet object to become the current worksheet
- (void)setHeaderLabelsEditable:(BOOL)editable;
this method determines whether the user is able to edit the header labels of the rows and columns of the spreadsheet
Name Description editable YES = headers can be edited, NO = header cannot be edited
- (void)setLowerLeftView:(NSView*)aView;
Use this method to change the lower left corner of the spreadsheet to a custom view
Name Description aView the view to be used as the lower left corner of the spreadsheet
- (void)setUpperRightView:(NSView*)aView;
Use this method to change the upper right corner of the spreadsheet to a custom view
Name Description aView the view to be used as the upper right corner of the spreadsheet
- (void)setupCornerViews;
internal method used to create and set up the corner views for the spreadsheet object
- (void)setupRulers;
internal method used to create and set up the rulers for the spreadsheet object
- (NSView*)upperRightView;
this method returns the view being used to fill the upper right corner of the spreadsheet
Result: returns the upper right view of the spreadsheet(Last Updated 4/30/2002)