Class DataItemCollection
Inheritance
System.Object
DataItemCollection
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Telerik.WinForms.Documents.Model
Assembly: Telerik.WinControls.RichTextEditor.dll
Syntax
public class DataItemCollection : INotifyPropertyChanged
Constructors
DataItemCollection()
Declaration
public DataItemCollection()
Properties
Count
Declaration
public int Count { get; }
Property Value
System.Int32
|
CurrentItem
Declaration
public object CurrentItem { get; }
Property Value
System.Object
|
CurrentPosition
Declaration
public int CurrentPosition { get; set; }
Property Value
System.Int32
|
IsCurrentAfterLast
Declaration
public bool IsCurrentAfterLast { get; set; }
Property Value
System.Boolean
|
IsCurrentBeforeFirst
Declaration
public bool IsCurrentBeforeFirst { get; set; }
Property Value
System.Boolean
|
ItemProperties
Declaration
public ReadOnlyCollection<PropertyInfo> ItemProperties { get; }
Property Value
System.Collections.ObjectModel.ReadOnlyCollection<System.Reflection.PropertyInfo>
|
ItemPropertyKeys
Declaration
public ReadOnlyCollection<string> ItemPropertyKeys { get; }
Property Value
System.Collections.ObjectModel.ReadOnlyCollection<System.String>
|
Methods
MoveCurrentTo(Object)
Declaration
public bool MoveCurrentTo(object item)
Parameters
System.Object
item
|
Returns
System.Boolean
|
MoveCurrentToFirst()
Declaration
public bool MoveCurrentToFirst()
Returns
System.Boolean
|
MoveCurrentToLast()
Declaration
public bool MoveCurrentToLast()
Returns
System.Boolean
|
MoveCurrentToNext()
Declaration
public bool MoveCurrentToNext()
Returns
System.Boolean
|
MoveCurrentToPosition(Int32)
Declaration
public bool MoveCurrentToPosition(int position)
Parameters
System.Int32
position
|
Returns
System.Boolean
|
MoveCurrentToPrevious()
Declaration
public bool MoveCurrentToPrevious()
Returns
System.Boolean
|
OnCurrentChanged(EventArgs)
Declaration
protected virtual void OnCurrentChanged(EventArgs args)
Parameters
System.EventArgs
args
|
OnPropertyChanged(String)
Declaration
protected virtual void OnPropertyChanged(string propertyName)
Parameters
System.String
propertyName
|
SetCurrent(Object, Int32)
Declaration
protected void SetCurrent(object newItem, int newPosition)
Parameters
System.Object
newItem
|
System.Int32
newPosition
|
Events
CurrentChanged
Declaration
public event EventHandler CurrentChanged
Event Type
System.EventHandler
|
PropertyChanged
Declaration
public event PropertyChangedEventHandler PropertyChanged
Event Type
System.ComponentModel.PropertyChangedEventHandler
|