Class TreeViewRowPresenterBase
Represents the class for the TreeView Row Presenter
Implements
System.Windows.IWeakEventListener
Namespace: Syncfusion.Windows.Tools.Controls
Assembly: Syncfusion.Tools.Wpf.dll
Syntax
public abstract class TreeViewRowPresenterBase : FrameworkElement, IWeakEventListener
Constructors
TreeViewRowPresenterBase()
Initializes a new instance of the TreeViewRowPresenterBase class.
Declaration
protected TreeViewRowPresenterBase()
Fields
ColumnsProperty
Represents the ColumnsProperty of TreeViewRowPreseneter
Declaration
public static readonly DependencyProperty ColumnsProperty
Field Value
Type |
---|
System.Windows.DependencyProperty |
Properties
Columns
Gets or sets the columns.
Declaration
public TreeViewColumnCollection Columns { get; set; }
Property Value
Type | Description |
---|---|
TreeViewColumnCollection | The columns. |
LogicalChildren
Gets an enumerator for logical child elements of this element.
Declaration
protected override IEnumerator LogicalChildren { get; }
Property Value
Type |
---|
System.Collections.IEnumerator |
VisualChildrenCount
Gets the number of visual child elements within this element.
Declaration
protected override int VisualChildrenCount { get; }
Property Value
Type |
---|
System.Int32 |
Methods
GetVisualChild(Int32)
Overrides System.Windows.Media.Visual.GetVisualChild(System.Int32), and returns a child at the specified index from a collection of child elements.
Declaration
protected override Visual GetVisualChild(int index)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | index | The zero-based index of the requested child element in the collection. |
Returns
Type | Description |
---|---|
System.Windows.Media.Visual | The requested child element. This should not return null; if the provided index is out of range, an exception is thrown. |
Initialize()
Initializes this instance.
Declaration
protected abstract void Initialize()
Implements
System.Windows.IWeakEventListener