SobekCM.Core.UI_Configuration.Citation.CitationFieldSet.Add_Translation C# (CSharp) Method

Add_Translation() public method

Add a new translation for the heading term
public Add_Translation ( Web_Language_Enum Language, string Value ) : void
Language Web_Language_Enum Language in which this value is represented
Value string Value in provided language
return void
        public void Add_Translation(Web_Language_Enum Language, string Value)
        {
            if (Translations == null)
                Translations = new List<Web_Language_Translation_Value>();

            Translations.Add(new Web_Language_Translation_Value(Language, Value));
        }