Configures the properties to customize the popup mode of the In-place Editor.
Inheritance
System.Object
Syncfusion.Blazor.SfBaseComponent
InPlaceEditorPopupSettings
Assembly: Syncfusion.Blazor.dll
public class InPlaceEditorPopupSettings : SfBaseComponent
Constructors
Declaration
public InPlaceEditorPopupSettings()
Properties
Specifies the animation that displays while opening and closing the popup.
The animation property allows to set delay, duration, and effect.
Declaration
public AnimationModel Animation { get; set; }
Property Value
Specifies a duration in milliseconds that will close the popup after a specified delay.
Declaration
public int CloseDelay { get; set; }
Property Value
Type |
Description |
System.Int32 |
|
Defines the specific user-defined styles to customize the popup.
Declaration
public string CssClass { get; set; }
Property Value
Type |
Description |
System.String |
|
Specifies the height of the popup which accepts the string values.
Declaration
public string Height { get; set; }
Property Value
Type |
Description |
System.String |
|
Adds the additional html attributes to the Popup element.
Declaration
public Dictionary<string, object> HtmlAttributes { get; set; }
Property Value
Type |
Description |
System.Collections.Generic.Dictionary<System.String, System.Object> |
|
Enables to freeze a popup in an open state until it is closed manually.
Declaration
public bool IsSticky { get; set; }
Property Value
Type |
Description |
System.Boolean |
|
Declaration
public object Model { get; set; }
Property Value
Type |
Description |
System.Object |
|
Specifies an X-coordinate value which is the horizontal space between the target and popup element.
Declaration
public int OffsetX { get; set; }
Property Value
Type |
Description |
System.Int32 |
|
Specifies an Y-coordinate value which is the vertical space between the target and popup element.
Declaration
public int OffsetY { get; set; }
Property Value
Type |
Description |
System.Int32 |
|
Specifies a duration in milliseconds that will open the popup after a specified delay.
Declaration
public int OpenDelay { get; set; }
Property Value
Type |
Description |
System.Int32 |
|
Determines the mode when invoking the popup. The available open modes are:
- Auto
- Hover
- Click
- Focus
- Custom
Declaration
public OpenType OpensOn { get; set; }
Property Value
Set the position of the popup based on the target element.
Declaration
public Position Position { get; set; }
Property Value
Determines whether to show or hide the tip pointer on the popup.
Declaration
public bool ShowTipPointer { get; set; }
Property Value
Type |
Description |
System.Boolean |
|
Specifies to customize the position of the tip pointer on the popup.
The available options are:
- Auto
- Start
- Middle
- End
When set to auto, the tip pointer adjusts its position automatically based on the available space on the target.
Declaration
public TipPointerPosition TipPointerPosition { get; set; }
Property Value
Specifies the title of the editor's popup.
Declaration
public string Title { get; set; }
Property Value
Type |
Description |
System.String |
|
Set the width of the popup component which accepts a string value.
When set width as auto, the popup width will be adjusted automatically to display its content within the viewable screen.
Declaration
public string Width { get; set; }
Property Value
Type |
Description |
System.String |
|
Methods
Declaration
protected override Task OnParametersSetAsync()
Returns
Type |
Description |
System.Threading.Tasks.Task |
|