/lib/titanium/mobile/ui/iphone/IPhoneProgressBarStyle.hx

http://github.com/visup/haxe-titanium-api · Haxe · 46 lines · 10 code · 2 blank · 34 comment · 0 complexity · a54964dab808e4da347039cdd8b84c95 MD5 · raw file

  1. package titanium.mobile.ui.iphone;
  2. /**
  3. IPhoneProgressBarStyle class
  4. Documentation available at:
  5. http://developer.appcelerator.com/apidoc/mobile/latest/Titanium.UI.iPhone.ProgressBarStyle-object
  6. - namespace
  7. Titanium.UI.iPhone.ProgressBarStyle
  8. - type
  9. proxy
  10. - description
  11. A set of constants for the bar styles used on the `style` property of [[Titanium.UI.ProgressBar]].
  12. - since
  13. 0.8
  14. - platforms
  15. iphone, ipad
  16. - properties
  17. PLAIN[int]: The standard progress-view style. Same as `DEFAULT`.
  18. DEFAULT[int]: he standard progress-view style. This is the default.
  19. BAR[int]: The style of progress view that is used in a toolbar.
  20. **/
  21. #if iphoneos
  22. @:native("Titanium.UI.iPhone.ProgressBarStyle")
  23. extern class IPhoneProgressBarStyle
  24. {
  25. // constants
  26. public static var BAR:Int;
  27. public static var DEFAULT:Int;
  28. public static var PLAIN:Int;
  29. }
  30. #end