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

SetRowSpan() public static method

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

            element.SetValue(RowSpanProperty, rowSpan);
        }