public void SetCustomPropertyFormat(LinearPrecision linearPrecision, bool showTrailingZeros)
        {
            if (linearPrecision == null)
                throw new ArgumentNullException(nameof(linearPrecision));

            SetCustomPropertyFormat(
                ConvertToCustomPropertyPrecisionEnum(linearPrecision.EnumValue),
                showTrailingZeros
            );
        }
Esempio n. 2
0
        public void SetCustomPropertyFormat(LinearPrecision linearPrecision, bool showTrailingZeros)
        {
            if (linearPrecision == null)
            {
                throw new ArgumentNullException(nameof(linearPrecision));
            }

            SetCustomPropertyFormat(
                ConvertToCustomPropertyPrecisionEnum(linearPrecision.EnumValue),
                showTrailingZeros
                );
        }