import { CustomValidation } from './CustomValidation'; import { InputType } from '../Enums/InputType'; import { EnglishArabicDTO } from './EnglishArabicDTO'; import { ControlLayout } from '../Enums/ControlLayout'; import { LanguageMode } from '../Enums/LanguageMode'; export declare class MultiLingualTextAreaOptions { /** Allow to Pass Object With Body of Function which represent CustomValidation and massage for error massage */ CustomValidation: CustomValidation[]; /**To Set Value To MultipleLanguageText with Object From Type "EnglishArabicDTO" */ Value: EnglishArabicDTO; /** Represent value of the Label*/ LabelValue: string; /** Represent Key of the label*/ ArabicLabelKey: string; /** Represent Key of the label*/ EnglishLabelKey: string; /** Represent value of the ArabicLabel*/ ArabicLabelValue: string; /** Represent value of the EnglishLabel*/ EnglishLabelValue: string; /** Represent value of the LabelDescription show under textbox*/ LabelDescription: string; /** Represent value of the ArabicLabelDescription show under MultilingualTextArea*/ ArabicLabelDescription: string; /** Represent value of the EnglishLabelDescription show under MultilingualTextArea*/ EnglishLabelDescription: string; /** * Represent Name Of Form Control */ Name: string; Type: InputType; /** * Represent ArabicPlaceholder Of Form Control */ ArabicPlaceholder: string; /** * Represent EngilshPlaceholder Of Form Control */ EngilshPlaceholder: string; /** * Represent classes to Arabic textbox that allow us to select the MultilingualTextArea by jquery or javascript */ ExtraClasses_AR: string; /** * Represent classes to English textbox that allow us to select the MultilingualTextArea by jquery or javascript */ ExtraClasses_EN: string; /** to set type of view if MultilingualTextArea is Vertical or Horizontal */ ViewType: ControlLayout; /**Set the MinLength of characters In MultilingualTextArea */ MinLength: number; MaxLength: number; MaxWordCount: number; /**Set Number Of Rows */ Rows: number; /** trim input on change */ TrimTextOnChange: boolean; /** add button to for coping to clipboard */ EnableCopyToClipboard: boolean; /** * Display "*" beside the label * if ForceAsterisk=true and IsRequired=True his display "*" , * if if ForceAsterisk=false and IsRequired=false this remove "*", *if ForceAsterisk=false and IsRequired=True this display "*" , */ ShowAsterisk: boolean; /** Ability to set MultilingualTextArea required */ IsRequired: boolean; /** Sets an attribute disable="disabled" */ IsDisabled: boolean; /** Ability to display or hide the EngilshField of MultilingualTextArea */ IsHideEngilshFields: boolean; /** Ability to display or hide the ArabicField of MultilingualTextArea */ IsHideArabicFields: boolean; /** Ability to display or hide the EngilshLabel of MultilingualTextArea */ IsHideEngilshLabel: boolean; /** Ability to display or hide the ArabicLable of MultilingualTextArea */ IsHideArabicLable: boolean; /**To Set LanguageMode To MultipleLanguageText */ LanguageMode: LanguageMode; }