Sets or retrieves the Background Font Color of the current selection.
Sets or retrieves the Background Font Color of the current selection.
Visual Basic |
---|
Public Property SelFontBackColor As String |
On read the property executes ExecCommand(EDIT_CMD_SEL_GET_FONT_BACK_COLOR).
On write the property executes ExecCommand(EDIT_CMD_SEL_SET_FONT_BACK_COLOR).
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
private void menuItemGetSelectionInfo_Click(object sender, EventArgs e) { WebKitXCEF31.ExecCommandSetFocus = false; AddLog("SelFontName=" + WebKitXCEF31.SelFontName + "\n"); AddLog("SelFontSize=" + WebKitXCEF31.SelFontSize + "\n"); AddLog("SelFontColor=" + WebKitXCEF31.SelFontColor + "\n"); AddLog("SelFontBackColor=" + WebKitXCEF31.SelFontBackColor + "\n"); AddLog("SelFontBold=" + WebKitXCEF31.SelFontBold + "\n"); AddLog("SelFontItalic=" + WebKitXCEF31.SelFontItalic + "\n"); AddLog("SelFontUnderline=" + WebKitXCEF31.SelFontUnderline + "\n"); AddLog("SelStrikeThrough=" + WebKitXCEF31.SelStrikeThrough + "\n"); WebKitXCEF31.ExecCommandSetFocus = true; }