连云港陪玩陪聊
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

75 lines
1.7 KiB

2 months ago
//
// zego-whiteboard-settings-oc.h
//
// Copyright © Shenzhen Zego Technology Company Limited
//
#import <Foundation/Foundation.h>
//#import "../zego-api-whiteboard-constant.h"
#pragma mark - whiteboard settings interface
@interface ZegoWhiteboardSettings : NSObject
/**
enum ZegoWhiteboardGraphicSizeLevel kZegoWhiteboardGraphicSizeLevel2
*/
+ (int) sizeOfGraphic: (int) graphicType;
/**
*/
+ (int) setSize:(int)size ofGraphic: (int) graphicType;
/**
*/
+ (unsigned int) colorOfGraphic: (int) graphicType;
/**
#ffffff
*/
+ (NSString *) colorStringOfGraphic: (int) graphicType;
/**
*/
+ (int) setColor: (unsigned int)color ofGraphic: (int) graphicType;
/**
*/
+ (Boolean) boldOfGraphic: (int) graphicType;
/**
*/
+ (void) setBold: (Boolean)bold ofGraphic: (int) graphicType;
/**
*/
+ (Boolean) italicOfGraphic: (int) graphicType;
/**
*/
+ (void) setItalic: (Boolean)italic ofGraphic: (int) graphicType;
/**
*/
+ (Boolean) strokeOfGraphic: (int) graphicType;
/**
使
*/
+ (void) setStroke: (Boolean)stroke ofGraphic: (int) graphicType;
@end