Click or drag to resize
RowDefinition Class
Defines row-specific properties that apply to Grid elements.
Inheritance Hierarchy

Namespace: Windows.UI.Xaml.Controls
Assembly: CSharpXamlForHtml5 (in CSharpXamlForHtml5.dll) Version: 1.0.0.0
Syntax
C#
public sealed class RowDefinition : DependencyObject

The RowDefinition type exposes the following members.

Constructors
  NameDescription
Public methodRowDefinition
Initializes a new instance of the RowDefinition class
Top
Methods
  NameDescription
Public methodClone
Returns a copy of this RowDefinition.
Public methodEquals(Object)
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodGetValue
Returns the current effective value of a dependency property from a DependencyObject.
(Inherited from DependencyObject.)
Public methodGetVisualStateValue (Inherited from DependencyObject.)
Public methodReadLocalValue
Returns the local value of a dependency property, if a local value is set.
(Inherited from DependencyObject.)
Public methodSetBinding
Attaches a binding to a FrameworkElement, using the provided binding object.
(Inherited from DependencyObject.)
Public methodSetInheritedValue
Sets the inherited value of a dependency property on a DependencyObject. Do not use this method.
(Inherited from DependencyObject.)
Public methodSetLocalValue
Sets the local value of a dependency property on a DependencyObject while not overriding a hypothetical Binding (example: when the user writes in a TextBox with a two way Binding on its Text property).
(Inherited from DependencyObject.)
Public methodSetValue
Sets the local value of a dependency property on a DependencyObject.
(Inherited from DependencyObject.)
Public methodSetVisualStateValue (Inherited from DependencyObject.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Fields
  NameDescription
Public fieldStatic memberHeightProperty
Identifies the Height dependency property.
Public fieldStatic memberMaxHeightProperty
Identifies the MaxHeight dependency property.
Public fieldStatic memberMinHeightProperty
Identifies the MinHeight dependency property.
Top
Properties
  NameDescription
Public propertyDispatcher
Gets the CoreDispatcher that this object is associated with.
(Inherited from DependencyObject.)
Public propertyHeight
Gets the calculated height of a RowDefinition element, or sets the GridLength value of a row that is defined by the RowDefinition. Returns the GridLength that represents the height of the row. The default value is 1.0
Public propertyMaxHeight
Gets or sets a value that represents the maximum height of a RowDefinition. Returns a Double that represents the maximum height in pixels. The default is PositiveInfinity.
Public propertyMinHeight
Gets or sets a value that represents the minimum height of a RowDefinition. Returns a Double that represents the minimum height in pixels. The default is 0.
Top
See Also