EnumResultCoordinateType
- Android
- Objective-C
- Swift
public class EnumResultCoordinateType { public static final int RCT_PIXEL = 1; public static final int RCT_PERCENTAGE = 2; }
typedef NS_ENUM(NSInteger, EnumResultCoordinateType) { /** Returns the coordinate in pixel value. */ EnumResultCoordinateTypePixel = 0x01, /** Returns the coordinate as a percentage. */ EnumResultCoordinateTypePercentage = 0x02 };
public enum EnumResultCoordinateType : Int{ /** Returns the coordinate in pixel value. */ pixel = 0x01 /** Returns the coordinate as a percentage. */ percentage = 0x02 }