GetOverStrike 

Syntax

object.GetOverStrike

Description

Call this method to obtain the state of edititability of the SQL pane editor of ELS-QB component.

Remarks

GetOverStrike method returns True if if SQL pane editor of  ELS-QB Component  is in OverStrike mode and False otherwise.

Note: In the overstrike mode, text insertions overwrite any characters to the right of the caret.

Example

This sample code shows how to use GetOverStrike  method to inform the user of the OverStrike mode of SQL pane editor  of ELS-QB Control.

Private Sub ShowOverStrikeMsg()

    Dim sMsg

    If ELS_QBCtrl.GetOverStrike Then

        sMsg = "OVR"

    Else

        sMsg = ""

    End If

   frmMDI.stBarMDI.Panels.Item(1).Text = sMsg

 End Sub