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

SetRow() public static method

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

            element.SetValue(RowProperty, row);
        }