forked from andreac/RSSheet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRSworkSheetRow.h
33 lines (28 loc) · 943 Bytes
/
RSworkSheetRow.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
//
// workSheetRow.h
// excelWriterExample
//
// Created by andrea cappellotto on 14/09/11.
// Copyright 2011 Università degli studi di Trento. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "RSStyle.h"
#import "RSCell.h"
@interface RSworkSheetRow : NSObject
{
NSMutableArray * cellArray;
float height;
RSStyle * style;
}
@property(nonatomic, readonly)NSMutableArray* cellArray;
@property(nonatomic, assign)float height;
@property(nonatomic, retain)RSStyle * style;
- (id)initWithHeight:(NSInteger )height;
- (id)initWithHeight:(NSInteger )height andStyle:(RSStyle *)style;
- (void)addCellString:(NSString *)content;
- (void)addCellString:(NSString *)content withStyle:(RSStyle *)style;
- (void)addCellNumber:(float )content;
- (void)addCellNumber:(float )content withStyle:(RSStyle *)style;
- (void)addCellData:(NSDate *)content;
- (void)addCellData:(NSDate *)content withStyle:(RSStyle *)style;
@end