// // WPLabel.h // WordPress // // Created by Josh Bassett on 15/07/09. // #import typedef enum { VerticalAlignmentTop = 0, VerticalAlignmentMiddle, VerticalAlignmentBottom, } VerticalAlignment; @interface WPLabel : UILabel { @private VerticalAlignment verticalAlignment; } @property (nonatomic) VerticalAlignment verticalAlignment; @end