mirror of
https://github.com/zoriya/react-native-svg.git
synced 2025-12-20 14:05:09 +00:00
19 lines
485 B
Objective-C
19 lines
485 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
#ifndef TextLengthAdjust_h
|
|
#define TextLengthAdjust_h
|
|
|
|
NS_ENUM(NSInteger, TextLengthAdjust) {
|
|
TextLengthAdjustSpacing,
|
|
TextLengthAdjustSpacingAndGlyphs,
|
|
TextLengthAdjustDEFAULT = TextLengthAdjustSpacing,
|
|
};
|
|
|
|
static NSString* const TextLengthAdjustStrings[] = {@"spacing", @"spacingAndGlyphs", nil};
|
|
|
|
NSString* TextLengthAdjustToString( enum TextLengthAdjust fw );
|
|
|
|
enum TextLengthAdjust TextLengthAdjustFromString( NSString* s );
|
|
|
|
#endif
|