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

SetColumn() public static method

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

            element.SetValue(ColumnProperty, column);
        }