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

DestroyCaret() private method

private DestroyCaret ( ) : void
return void
        void DestroyCaret()
        {
            if(!_caretVisible)
                return;

            NativeMethods.DestroyCaret();
            _caretVisible = false;
        }