Files
react-native-svg/ios/Text/TextLengthAdjust.h
2017-08-24 12:42:18 +03:00

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