Articles in this section
Category / Section

How to populate the ContextPrompt popup in the WinForms SyntaxEditor (EditControl)?

4 mins read

Populate context prompt

The ContextPrompt popup can be populated by handling the EditControl's ContextPromptOpen event and using the AddPrompt method. Please refer to the code snippets to know more about it.

C#

private void editControl1_ContextPromptOpen(object sender, Syncfusion.Windows.Forms.Edit.ContextPromptUpdateEventArgs e)
{
    e.AddPrompt( "Find()", "Display the Find dialog" );
    e.AddPrompt( "Find(string searchText)", "Find occurences of the specified search text" );
    e.AddPrompt( "Find(string searchText, bool searchUp)", "Find occurences of the specified search text and search up if specified" );
}

 

VB

Private Sub editControl1_ContextPromptOpen(ByVal sender As Object, ByVal e As Syncfusion.Windows.Forms.Edit.ContextPromptUpdateEventArgs)
    e.AddPrompt("Find()", "Display the Find dialog")
    e.AddPrompt("Find(string searchText)", "Find occurences of the specified search text")
    e.AddPrompt("Find(string searchText, bool searchUp)", "Find occurences of the specified search text and search up if specified")
End Sub

 

Reference link: https://help.syncfusion.com/windowsforms/syntaxeditor/intellisense#populate-context-prompt

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied