Definition
Namespace:Telerik.Blazor.Components
Assembly:Telerik.Blazor.dll
Syntax:
public class InlineAIPromptPopupSettings : ComponentBase, IComponent, IHandleEvent, IHandleAfterRender, IDisposable
Inheritance: objectComponentBaseInlineAIPromptPopupSettings
Implements:
Inherited Members
Constructors
public InlineAIPromptPopupSettings()
Methods
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Overrides:
public void Dispose()
Implements:
protected override void OnInitialized()
Overrides:
Properties
Defines the animation duration of the container. Default AnimationDuration is 300ms.
[Parameter]
public int AnimationDuration { get; set; }
Defines the animation type of the container. Default value is AnimationType.SlideDown.
[Parameter]
public AnimationType AnimationType { get; set; }
[CascadingParameter]
public TelerikInlineAIPrompt Container { get; set; }
Defines the height of the component popup.
[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.
[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.
[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.
[Parameter]
public double HorizontalOffset { get; set; }
Maximum height of the inline prompt popup.
[Parameter]
public string MaxHeight { get; set; }
Maximum width of the inline prompt popup.
[Parameter]
public string MaxWidth { get; set; }
Minimum height of the inline prompt popup.
[Parameter]
public string MinHeight { get; set; }
Minimum width of the inline prompt popup.
[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.
[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.
[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.
[Parameter]
public double VerticalOffset { get; set; }