ListViewVirtualItemsSelectionRangeChangedEvent.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / WinForms / Managed / System / WinForms / ListViewVirtualItemsSelectionRangeChangedEvent.cs / 1 / ListViewVirtualItemsSelectionRangeChangedEvent.cs

                            //------------------------------------------------------------------------------------------ 
// 
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// 
//----------------------------------------------------------------------------------------- 

/* 
 */ 
namespace System.Windows.Forms
{ 
    using System.ComponentModel;

    /// 
    ///  
    /// The event class that is created when the selection state of a ListViewItem is changed.
    ///  
    public class ListViewVirtualItemsSelectionRangeChangedEventArgs : EventArgs 
    {
        private int startIndex; 
        private int endIndex;
        private bool isSelected;

        ///  
        /// 
        /// Constructs a ListViewVirtualItemsSelectionRangeChangedEventArgs object. 
        ///  
        public ListViewVirtualItemsSelectionRangeChangedEventArgs(int startIndex, int endIndex, bool isSelected)
        { 
            if (startIndex > endIndex)
            {
                throw new ArgumentException(SR.GetString(SR.ListViewStartIndexCannotBeLargerThanEndIndex));
            } 
            this.startIndex = startIndex;
            this.endIndex = endIndex; 
            this.isSelected = isSelected; 
        }
 
        /// 
        /// 
        /// Returns the end of the range where the selection changed
        ///  
        public int EndIndex
        { 
            get 
            {
                return this.endIndex; 
            }
        }

        ///  
        /// 
        /// Return true if the items are selected 
        ///  
        public bool IsSelected
        { 
            get
            {
                return this.isSelected;
            } 
        }
 
        ///  
        /// 
        /// Returns the begining of the range where the selection changed 
        /// 
        public int StartIndex
        {
            get 
            {
                return this.startIndex; 
            } 
        }
    } 
}

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
//------------------------------------------------------------------------------------------ 
// 
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// 
//----------------------------------------------------------------------------------------- 

/* 
 */ 
namespace System.Windows.Forms
{ 
    using System.ComponentModel;

    /// 
    ///  
    /// The event class that is created when the selection state of a ListViewItem is changed.
    ///  
    public class ListViewVirtualItemsSelectionRangeChangedEventArgs : EventArgs 
    {
        private int startIndex; 
        private int endIndex;
        private bool isSelected;

        ///  
        /// 
        /// Constructs a ListViewVirtualItemsSelectionRangeChangedEventArgs object. 
        ///  
        public ListViewVirtualItemsSelectionRangeChangedEventArgs(int startIndex, int endIndex, bool isSelected)
        { 
            if (startIndex > endIndex)
            {
                throw new ArgumentException(SR.GetString(SR.ListViewStartIndexCannotBeLargerThanEndIndex));
            } 
            this.startIndex = startIndex;
            this.endIndex = endIndex; 
            this.isSelected = isSelected; 
        }
 
        /// 
        /// 
        /// Returns the end of the range where the selection changed
        ///  
        public int EndIndex
        { 
            get 
            {
                return this.endIndex; 
            }
        }

        ///  
        /// 
        /// Return true if the items are selected 
        ///  
        public bool IsSelected
        { 
            get
            {
                return this.isSelected;
            } 
        }
 
        ///  
        /// 
        /// Returns the begining of the range where the selection changed 
        /// 
        public int StartIndex
        {
            get 
            {
                return this.startIndex; 
            } 
        }
    } 
}

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.

                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK