System.Windows.Forms.HexBox.Select C# (CSharp) Method

Select() public method

Selects the hex box.
public Select ( long start, long length ) : void
start long the start index of the selection
length long the length of the selection
return void
        public void Select(long start, long length)
        {
            InternalSelect(start, length);
            ScrollByteIntoView();
        }