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.

42 lines
1.2 KiB

  1. //
  2. // TranskeyParam.h
  3. // mTrankeyDemo_xib
  4. //
  5. // Created by lion on 13. 5. 24..
  6. // Copyright (c) 2013년 lumensoft. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. enum {
  10. MultiFinishBtnOption,
  11. MultiContinueBtnOption
  12. };
  13. @interface TranskeyParam : NSObject
  14. @property (nonatomic, assign) NSInteger keypadType;
  15. @property (nonatomic, assign) NSInteger inputType;
  16. @property (nonatomic, assign) NSInteger cryptType;
  17. @property (nonatomic, assign) NSInteger mt_maxLength;
  18. @property (nonatomic, assign) NSInteger mt_minLength;
  19. @property (nonatomic, retain) NSString *inputTitle;
  20. @property (nonatomic, retain) NSString *maxMessage;
  21. @property (nonatomic, retain) NSString *minMessage;
  22. @property (nonatomic, retain) NSString *inputEditBoxHint;
  23. @property (nonatomic, retain) UIFont *inputEditBoxFont;
  24. @property (nonatomic, assign) NSTextAlignment hintAlignment;
  25. @property (nonatomic, retain) NSString *specialKeyMessage;
  26. @property (nonatomic, assign) NSInteger cancelBtnOption;
  27. @property (nonatomic, assign) NSInteger completeBtnOption;
  28. @property (nonatomic, retain) UIColor *navibarBackgroundColor;
  29. @property (nonatomic, retain) NSString *navibarBackgroundImageName;
  30. @property (nonatomic, assign) BOOL upper;
  31. @end