export interface IR5BtnProperties { /** Color as rgb(r,g,b) */ Color?: string; /** Color IntValue or RGB(r,g,b) */ FontColor?: string; /** Btn Text Font Size */ FontSize?: number; /** Btn Text Font */ Font?: string; /** Image Num */ Bmp?: number; /** Btn Bevel Width */ BevelWidth?: number; /** Button Flags * Bit 00 : ShadowText * Bit 01 : FlatText * Bit 03 : StyleSpeedBtn * Bit 04 : StyleBtn * Bit 05 : LedTopStyleBtn * Bit 06 : LedRightStyleBtn * Bit 07 : LedLeftStyleBtn * Bit 08 : LedBottomStyleBtn * Bit 09 : Bevel * Bit 10 : Btn * Bit 11 : Edged * Bit 12 : Encarta * Bit 13 : Rounded * Bit 14 : Label * Bit 16 : Flat * Bit 17 : TouchSquare * Bit 18 : TouchRound * Bit 21 : GotoSearchList * Bit 50 : 1x1 * Bit 51 : 2x1 * Bit 52 : 1x2 * Bit 53 : 2x2 * Bit 59 : Transparent */ Properties: number; /** BtnStyle:[StyleSpeedBtn,StyleBtn,LedTopStyleBtn,LedRightStyleBtn,LedLeftStyleBtn,LedBottomStyleBtn,Bevel,Btn,Edged,Encarta,Rounded,Label,Flat,TouchSquare,TouchRound] */ BtnStyle: string; /** TextStyle:[ShadowText,FlatText] */ TextStyle: string; /** BtnSize:[1x1,2x1,1x2,2x2] */ BtnSize: string; }