Be.Windows.Forms.HexBox.SelectAll C# (CSharp) Method

SelectAll() public method

Selects all bytes.
public SelectAll ( ) : void
return void
        public void SelectAll()
        {
            if (this.ByteProvider == null)
                return;
            this.Select(0, this.ByteProvider.Length);
        }
HexBox