AliyunICanvasLineData
@interface AliyunICanvasLineData : NSObject
/****
The color of the paint brush.
*/
@property (nonatomic, strong, readonly) UIColor *lineColor;
/****
The size of the paint brush.
*/
@property (nonatomic, assign, readonly) CGFloat lineWidth;
/****
The color of the shadow.
*/
@property (nonatomic, strong, readonly) UIColor *shadowColor;
/****
The size of the shadow.
*/
@property (nonatomic, assign, readonly) CGFloat shadowWidth;
/****
The points of line
*/
@property (nonatomic, copy, readonly) NSArray<NSValue *> *points;
@end
Undocumented
-
* The color of the paint brush.
Declaration
Objective-C
@property (nonatomic, strong, readonly) UIColor *lineColor
-
* The size of the paint brush.
Declaration
Objective-C
@property (nonatomic, readonly) CGFloat lineWidth;
-
* The color of the shadow.
Declaration
Objective-C
@property (nonatomic, strong, readonly) UIColor *shadowColor
-
* The size of the shadow.
Declaration
Objective-C
@property (nonatomic, readonly) CGFloat shadowWidth;
-
* The points of line
Declaration
Objective-C
@property (nonatomic, copy, readonly) NSArray<NSValue *> *points;