BGC.Parameters.EnumDropdownDisplayAttribute.EnumDropdownDisplayAttribute C# (CSharp) Method

EnumDropdownDisplayAttribute() public method

public EnumDropdownDisplayAttribute ( string fieldName, string displayTitle, int initialValue, string choiceListMethodName ) : System
fieldName string
displayTitle string
initialValue int
choiceListMethodName string
return System
        public EnumDropdownDisplayAttribute(
            string fieldName,
            string displayTitle,
            int initialValue,
            string choiceListMethodName)
            : base(fieldName, displayTitle)
        {
            this.initialValue = initialValue;

            this.choiceListMethodName = choiceListMethodName;
        }