Xceed DataGrid for Silverlight Documentation
EndRangeInfos Property
Example 


Gets a notification dictionary of key/value pairs that represents the end range-information for a selection range.
Syntax
'Declaration
 
Public ReadOnly Property EndRangeInfos As SelectionRange.EndRangeDictionary
'Usage
 
Dim instance As SelectionRange
Dim value As SelectionRange.EndRangeDictionary
 
value = instance.EndRangeInfos
public SelectionRange.EndRangeDictionary EndRangeInfos {get;}

Property Value

NotificationDictionary of key/value pairs that represents the end range-information for a selection range.
Example
For more information and examples on selecting data, refer to the Selecting Data topic.
Dim range As New SelectionRange( New SortDescription() { new SortDescription( "ShipCountry", ListSortDirection.Ascending ) }, Nothing, Nothing )
 
range.StartRangeInfos.Add( "ShipCountry", "A" )
range.EndRangeInfos.Add( "ShipCountry", "N" )
 
range.EndRangeInfos.IsInclusive = False
 
Me.sldgDataGridControl.SelectedRanges.Clear()
Me.sldgDataGridControl.SelectedRanges.Add( range )
SelectionRange range = new SelectionRange( new SortDescription[] { new SortDescription( "ShipCountry", ListSortDirection.Ascending ) }, null, null );
 
range.StartRangeInfos.Add( "ShipCountry", "A" );
range.EndRangeInfos.Add( "ShipCountry", "N" );
 
range.EndRangeInfos.IsInclusive = false;
 
this.sldgDataGridControl.SelectedRanges.Clear();
this.sldgDataGridControl.SelectedRanges.Add( range );
Requirements

Target Platforms: Windows 7, Windows Vista, Windows XP SP3, Windows Server 2008 family

See Also

Reference

SelectionRange Class
SelectionRange Members
SelectionRange.StartRangeInfos Property

Manipulating Data

Selecting Data

Send Feedback