skip navigation
  • Product Bundles

    DevCraft

    All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:

    • AI Coding Assistants
    • Embedded Reporting
    • Document Processing Libraries
    • SSO Account Sign-in

    Web

    Kendo UI UI for Angular UI for Vue UI for jQuery KendoReact UI for Blazor UI for ASP.NET Core UI for ASP.NET MVC UI for ASP.NET AJAX

    Mobile

    UI for .NET MAUI

    Document Management

    Telerik Document Processing

    Desktop

    UI for .NET MAUI UI for WinUI UI for WinForms UI for WPF

    Reporting

    Telerik Reporting Telerik Report Server

    Testing & Mocking

    Test Studio Telerik JustMock

    CMS

    Sitefinity

    AI Productivity Tools

    AI Coding Assistants

    UI/UX Tools

    ThemeBuilder Design System Kit Templates and Building Blocks

    Debugging

    Fiddler Fiddler Everywhere Fiddler Classic Fiddler Everywhere Reporter FiddlerCore

    Free Tools

    KendoReact Free VB.NET to C# Converter Testing Framework
    View all products
  • Overview
  • Demos
    • What's New
    • Roadmap
    • Release History
  • Support and Learning

    • Support and Learning Hub
    • First Steps
    • Docs
    • Demos
    • Virtual Classroom
    • Forums
    • Videos
    • Blogs
    • Accessibility
    • Submit a Ticket

    Productivity and Design Tools

    • Visual Studio Extensions
    • Visual Studio Templates
    • Embedded Reporting
  • Pricing
  • Shopping cart
    • Account Overview
    • Your Licenses
    • Downloads
    • Support Center
    • Forum Profile
    • Payment Methods
    • Edit Profile
    • Log out
  • Login
  • Contact Us
  • Try now

Class IntelliPromptBase

Base class for IntelliPrompt implementations..

Inheritance
System.Object
ShapedForm
IntelliPromptBase
FindReplacePopup
CompletionListPopup
OverloadListPopup
ToolTipForm
Inherited Members
ShapedForm.OnThemeChanged(ThemeChangedEventArgs)
ShapedForm.SetBoundsCore(Int32, Int32, Int32, Int32, BoundsSpecified)
ShapedForm.SetClientSizeCore(Int32, Int32)
ShapedForm.OnLoad(EventArgs)
ShapedForm.OnShown(EventArgs)
ShapedForm.OnPaintBackground(PaintEventArgs)
ShapedForm.OnSizeChanged(EventArgs)
ShapedForm.ApplicationThemeChanged(Object, ThemeChangedEventArgs)
ShapedForm.ScaleControl(SizeF, BoundsSpecified)
ShapedForm.OnResizeBegin(EventArgs)
ShapedForm.OnResizeEnd(EventArgs)
ShapedForm.OnMove(EventArgs)
ShapedForm.PaintFrame(Graphics)
ShapedForm.PaintBorder(Graphics)
ShapedForm.GetHitTest(Point)
ShapedForm.ApplyTheme(String)
ShapedForm.ApplyShape()
ShapedForm.IsRectangularShape(Int32)
ShapedForm.CreateBorderPath()
ShapedForm.LOWORD(Int32)
ShapedForm.ShapedControl
ShapedForm.WindowsSettings
ShapedForm.BackColor
ShapedForm.BorderColor
ShapedForm.BorderWidth
ShapedForm.ForeColor
ShapedForm.Font
ShapedForm.BorderAlignment
ShapedForm.AllowResize
ShapedForm.Shape
ShapedForm.ThemeName
ShapedForm.EnableCompositionOnVista
ShapedForm.CreateParams
ShapedForm.FormBorderStyle
ShapedForm.ControlThemeClassName
ShapedForm.BorderPath
ShapedForm.OuterPath
Namespace: Telerik.WinForms.Controls.SyntaxEditor.UI
Assembly: Telerik.WinControls.SyntaxEditor.dll

Syntax

public class IntelliPromptBase : ShapedForm, IThemeChangeListener, IDisposable

Constructors

IntelliPromptBase()

Declaration
public IntelliPromptBase()

IntelliPromptBase(RadSyntaxEditorElement)

Initializes a new instance of the IntelliPromptBase class.

Declaration
public IntelliPromptBase(RadSyntaxEditorElement syntaxEditor)
Parameters
RadSyntaxEditorElement syntaxEditor

The code editor.

Properties

CloseOnLostFocus

Gets a value indicating whether [close on lost focus].

Declaration
public virtual bool CloseOnLostFocus { get; }
Property Value
System.Boolean

true if [close on lost focus]; otherwise, false.

Editor

Gets the editor.

Declaration
public RadSyntaxEditorElement Editor { get; }
Property Value
RadSyntaxEditorElement

The editor.

EndPosition

Gets the end position.

Declaration
public CaretPosition EndPosition { get; }
Property Value
CaretPosition

The end position.

HasCalledClose

Gets a value indicating whether this instance has called close.

Declaration
protected bool HasCalledClose { get; }
Property Value
System.Boolean

true if this instance has called close; otherwise, false.

IsAutoClose

Gets or sets a value indicating whether this instance is automatic close.

Declaration
public bool IsAutoClose { get; set; }
Property Value
System.Boolean

true if this instance is automatic close; otherwise, false.

OpacityWhenCtrlPressed

Gets or sets the opacity when control pressed.

Declaration
public double OpacityWhenCtrlPressed { get; set; }
Property Value
System.Double

The opacity when control pressed.

RepositionOnCaretPositionChanged

Gets a value indicating whether [reposition on caret position changed].

Declaration
public virtual bool RepositionOnCaretPositionChanged { get; }
Property Value
System.Boolean

true if [reposition on caret position changed]; otherwise, false.

StartPosition

Gets the start position.

Declaration
public CaretPosition StartPosition { get; }
Property Value
CaretPosition

The start position.

Methods

AttachToEditor()

Attaches to editor.

Declaration
protected virtual void AttachToEditor()

AutoClose()

Automatics the close.

Declaration
protected virtual void AutoClose()

CalculatePopupLocation(RadSyntaxEditorElement)

Declaration
protected virtual Point CalculatePopupLocation(RadSyntaxEditorElement editor)
Parameters
RadSyntaxEditorElement editor

Returns
System.Drawing.Point

Close()

Closes this instance.

Declaration
public void Close()

DetachFromEditor()

Detaches from editor.

Declaration
protected virtual void DetachFromEditor()

Dispose(Boolean)

Releases unmanaged and - optionally - managed resources.

Declaration
protected virtual void Dispose(bool disposing)
Parameters
System.Boolean disposing

true to release both managed and unmanaged resources; false to release only unmanaged resources.

EditorLocationChanged(Object, EventArgs)

Declaration
protected virtual void EditorLocationChanged(object sender, EventArgs e)
Parameters
System.Object sender

System.EventArgs e

GetDesiredNCHitResult(Int32)

Declaration
protected virtual int GetDesiredNCHitResult(int actualHitPoint)
Parameters
System.Int32 actualHitPoint

Returns
System.Int32

GetScreenPopupLocation(Point)

Declaration
protected virtual Point GetScreenPopupLocation(Point location)
Parameters
Point location

Returns
System.Drawing.Point

GetThemeName()

Declaration
protected virtual string GetThemeName()
Returns
System.String

HandleSyntaxEditorKeyDown(Object, PreviewSyntaxEditorKeyEventArgs)

Handles the code editor key down.

Declaration
protected virtual void HandleSyntaxEditorKeyDown(object sender, PreviewSyntaxEditorKeyEventArgs e)
Parameters
System.Object sender

The sender.

PreviewSyntaxEditorKeyEventArgs e

The PreviewSyntaxEditorKeyEventArgs instance containing the event data.

HandleSyntaxEditorKeyUp(Object, PreviewSyntaxEditorKeyEventArgs)

Handles the code editor key up.

Declaration
protected virtual void HandleSyntaxEditorKeyUp(object sender, PreviewSyntaxEditorKeyEventArgs e)
Parameters
System.Object sender

The sender.

PreviewSyntaxEditorKeyEventArgs e

The PreviewSyntaxEditorKeyEventArgs instance containing the event data.

ReadOwnerProperties()

Declaration
protected virtual void ReadOwnerProperties()

Reset()

Resets this instance.

Declaration
protected virtual void Reset()

SetPositionInView()

Declaration
protected virtual void SetPositionInView()

Show()

Shows this instance.

Declaration
public void Show()

Show(CaretPosition, CaretPosition)

Shows the specified start position.

Declaration
public void Show(CaretPosition caretStartPosition, CaretPosition caretEndPositions)
Parameters
CaretPosition caretStartPosition

The start position.

CaretPosition caretEndPositions

The end position.

UpdatePopupLocation(Point)

Declaration
protected virtual void UpdatePopupLocation(Point location)
Parameters
Point location

UpdatePopupSize()

Declaration
protected virtual void UpdatePopupSize()

WndProc(ref Message)

Declaration
protected override void WndProc(ref Message m)
Parameters
System.Windows.Forms.Message m

Overrides
ShapedForm.WndProc(ref Message)

Extension Methods

SvgExtentions.Traverse<T>(T, Func<T, IEnumerable<T>>)
SvgExtentions.TraverseDepthFirst<T>(T, Func<T, IEnumerable<T>>)
Getting Started
  • Install Now
  • Demos
  • Step-by-Step Tutorial
  • Sample Applications
  • SDK Samples
  • Visual Studio Extensions
Support Resources
  • Code Library
  • Knowledge Base
  • Videos
Community
  • Forums
  • Blogs
  • Feedback Portal
  • Document Processing Feedback Portal

Copyright © 2018 Progress Software Corporation and/or its subsidiaries or affiliates.
All Rights Reserved.

Progress, Telerik, and certain product names used herein are trademarks or registered trademarks of Progress Software Corporation and/or one of its subsidiaries or affiliates in the U.S. and/or other countries. See Trademarks for appropriate markings.