CEWorkbench.Converters.HeightMarginConverter.Convert C# (CSharp) Method

Convert() public method

public Convert ( object value, Type targetType, object parameter, System culture ) : object
value object
targetType System.Type
parameter object
culture System
return object
        public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
        {
            if (value == DependencyProperty.UnsetValue)
                return 0;

            double containerHeight = (double)value;
            int margin = Int32.Parse((String)parameter);

            return containerHeight - margin;
        }
HeightMarginConverter