UniPRT SDK v2.0.0.0
 
载入中...
搜索中...
未找到
IBox.h
1//
2// IBox.h
3// sdk_json_Objective-C
4//
5// Created by Realbuber on 2024/5/8.
6//
7
8#ifndef IBox_h
9#define IBox_h
10
11// IBox.h
12#import <Foundation/Foundation.h>
13#import <UniPRT/IRuler.h>
14#import <UniPRT/IPoint.h>
15
32@protocol IBox <NSObject>
33
44@property (nonatomic, strong) id<IRuler> ruler;
45
56@property (nonatomic, strong) id<IPoint> start;
57
68@property (nonatomic, strong) id<IPoint> end;
69
80@property (nonatomic, assign) float lineThickness;
81
92@property (nonatomic, assign) float cornerRounding;
93
94@end
95
96#endif /* IBox_h */
id< IRuler > ruler
用于放置的标尺。如果未设置,则使用默认的标尺设置。
定义 IBox.h:44
id< IPoint > end
盒子的右下角。
定义 IBox.h:68
float lineThickness
基于使用的标尺单位的线条厚度。
定义 IBox.h:80
id< IPoint > start
盒子的左上角。
定义 IBox.h:56
float cornerRounding
盒子角的圆角值。
定义 IBox.h:92