mobileFX WebKitX CEF3 ActiveX 4.x
WebKitXCEF3Lib ActiveX Control / WebKitXCEF3 Object / SelStrikeThrough Property
SelStrikeThrough Property
Description

Sets or retrieves if the current selection is Stroked. 

Property type
Read-write property
Syntax
Visual Basic
Public Property SelStrikeThrough As Boolean
Return Type

Returns if the current selection is Stroked.

Remarks

On read the property executes ExecCommand(EDIT_CMD_SEL_GET_FONT_STRIKETHROUGH).

On write the property executes ExecCommand(EDIT_CMD_SEL_SET_FONT_STRIKETHROUGH).

Example
Private Sub mnuSelInfo_Click()
    On Error Resume Next
    WebKitX1.ExecCommandSetFocus = False
    AddLog "SelFontName=" & WebKitX1.SelFontName
    AddLog "SelFontSize=" & WebKitX1.SelFontSize
    AddLog "SelFontColor=" & WebKitX1.SelFontColor
    AddLog "SelFontBackColor=" & WebKitX1.SelFontBackColor
    AddLog "SelFontBold=" & WebKitX1.SelFontBold
    AddLog "SelFontItalic=" & WebKitX1.SelFontItalic
    AddLog "SelFontUnderline=" & WebKitX1.SelFontUnderline
    AddLog "SelStrikeThrough=" & WebKitX1.SelStrikeThrough
    WebKitX1.ExecCommandSetFocus = True
End Sub
See Also