//
//  TKCalendarTextEffect.h
//  TelerikUI
//
//  Copyright (c) 2015 Telerik. All rights reserved.
//

#ifndef TelerikUI_TKCalendarTextEffect_h
#define TelerikUI_TKCalendarTextEffect_h

/**
 @enum TKCalendarTextEffect
 @discussion Defines the year presenter text effects.
 */
typedef NS_ENUM(NSInteger, TKCalendarTextEffect) {
    
    /**
     No text effect will be applied.
     */
    TKCalendarTextEffectNone,
    
    /**
     The text will be converted to uppercase.
     */
    TKCalendarTextEffectUppercase,
    
    /**
     The text will be converted to lowercase.
     */
    TKCalendarTextEffectLowercase
    
};

#endif
