New to Telerik UI for BlazorStart a free 30-day trial

Definition

Constructors

C#
public InlineAIPromptPopupSettings()

Methods

C#
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Parameters:__builderRenderTreeBuilder

Overrides: ComponentBase.BuildRenderTree(RenderTreeBuilder)

C#
public void Dispose()

Implements: IDisposable.Dispose()

C#
protected virtual void Dispose(bool disposing)
Parameters:disposingbool
C#
protected override void OnInitialized()

Overrides: ComponentBase.OnInitialized()

Properties

Defines the animation duration of the container. Default AnimationDuration is 300ms.

C#
[Parameter]
public int AnimationDuration { get; set; }

Defines the animation type of the container. Default value is AnimationType.SlideDown.

C#
[Parameter]
public AnimationType AnimationType { get; set; }
C#
[CascadingParameter]
public TelerikInlineAIPrompt Container { get; set; }

Defines the height of the component popup.

C#
[Parameter]
public string Height { get; set; }

In combination with VerticalAlign specifies which point of the popup element to attach to the anchor's origin point. The available X options are: Left Center Right. By default, the attached point is the top-left corner of the popup element.

C#
[Parameter]
public PopupHorizontalAlign HorizontalAlign { get; set; }

Specifies the behavior of the Popup when it does not fit in the viewport. Valid values are: Flip - the popup will flip if there is sufficient available space on the opposite side. Fit - the popup will be shifted (moved) until it is fully visible. By default, the Popup fits horizontally when there is a collision.

C#
[Parameter]
public PopupCollision HorizontalCollision { get; set; }

Specifies the horizontal offset value, in pixels, to be added to the popup position, creating a blank space between the popup and the anchor.

C#
[Parameter]
public double HorizontalOffset { get; set; }

Maximum height of the inline prompt popup.

C#
[Parameter]
public string MaxHeight { get; set; }

Maximum width of the inline prompt popup.

C#
[Parameter]
public string MaxWidth { get; set; }

Minimum height of the inline prompt popup.

C#
[Parameter]
public string MinHeight { get; set; }

Minimum width of the inline prompt popup.

C#
[Parameter]
public string MinWidth { get; set; }

In combination with HorizontalAlign specifies which point of the popup element to attach to the anchor's origin point. The available Y options are: Bottom Center Top By default, the attached point is the top-left corner of the popup element.

C#
[Parameter]
public PopupVerticalAlign VerticalAlign { get; set; }

Specifies the behavior of the Popup when it does not fit in the viewport. Valid values are: Flip - the popup will flip if there is sufficient available space on the opposite side. Fit - the popup will be shifted (moved) until it is fully visible. By default, the Popup flips vertically when there is a collision.

C#
[Parameter]
public PopupCollision VerticalCollision { get; set; }

Specifies the vertical offset value, in pixels, to be added to the popup position, creating a blank space between the popup and the anchor.

C#
[Parameter]
public double VerticalOffset { get; set; }

Defines the width of the component popup.

C#
[Parameter]
public string Width { get; set; }