ComponentFactory.Quicksilver.Layout.GridLayout.SetColumnSpan C# (CSharp) Method

SetColumnSpan() public static method

Sets the value of the ColumnSpan attached property to a specified element.
public static SetColumnSpan ( UIElement element, int columnSpan ) : void
element UIElement The element to which the attached property is written.
columnSpan int The new ColumnSpan value.
return void
        public static void SetColumnSpan(UIElement element, int columnSpan)
        {
            if (element == null)
                throw new ArgumentNullException("element");

            element.SetValue(ColumnSpanProperty, columnSpan);
        }