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

CanCopy() public method

Return true if Copy method could be invoked.
public CanCopy ( ) : bool
return bool
        public bool CanCopy()
        {
            if(_selectionLength < 1 || _byteProvider == null)
                return false;

            return true;
        }