Class InPlaceEditorPopupSettings
Configures the properties to customize the popup mode of the In-place Editor.
Inheritance
Namespace: Syncfusion.Blazor.InPlaceEditor
Assembly: Syncfusion.Blazor.dll
Syntax
public class InPlaceEditorPopupSettings : OwningComponentBase
Constructors
InPlaceEditorPopupSettings()
Declaration
public InPlaceEditorPopupSettings()
Properties
Animation
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
Type |
---|
AnimationModel |
CloseDelay
Specifies a duration in milliseconds that will close the popup after a specified delay.
Declaration
public int CloseDelay { get; set; }
Property Value
Type |
---|
System.Int32 |
CssClass
Defines the specific user-defined styles to customize the popup.
Declaration
public string CssClass { get; set; }
Property Value
Type |
---|
System.String |
Height
Specifies the height of the popup which accepts the string values.
Declaration
public string Height { get; set; }
Property Value
Type |
---|
System.String |
HtmlAttributes
Adds the additional html attributes to the Popup element.
Declaration
public Dictionary<string, object> HtmlAttributes { get; set; }
Property Value
Type |
---|
System.Collections.Generic.Dictionary<System.String, System.Object> |
IsSticky
Enables to freeze a popup in an open state until it is closed manually.
Declaration
public bool IsSticky { get; set; }
Property Value
Type |
---|
System.Boolean |
OffsetX
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 |
---|
System.Int32 |
OffsetY
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 |
---|
System.Int32 |
OpenDelay
Specifies a duration in milliseconds that will open the popup after a specified delay.
Declaration
public int OpenDelay { get; set; }
Property Value
Type |
---|
System.Int32 |
OpensOn
Determines the mode when invoking the popup. The available open modes are: 1.Auto 2.Hover 3.Click 4.Focus 5.Custom
Declaration
public OpenType OpensOn { get; set; }
Property Value
Type |
---|
OpenType |
Position
Set the position of the popup based on the target element.
Declaration
public Position Position { get; set; }
Property Value
Type |
---|
Position |
ShowTipPointer
Determines whether to show or hide the tip pointer on the popup.
Declaration
public bool ShowTipPointer { get; set; }
Property Value
Type |
---|
System.Boolean |
TipPointerPosition
Specifies to customize the position of the tip pointer on the popup. The available options are: 1.Auto 2.Start 3.Middle 4.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
Type |
---|
TipPointerPosition |
Title
Specifies the title of the editor's popup.
Declaration
public string Title { get; set; }
Property Value
Type |
---|
System.String |
Width
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 |
---|
System.String |
Methods
Dispose()
Dispose the unmanaged resources.
Declaration
public virtual void Dispose()
Dispose(Boolean)
Dispose the unmanaged resources.
Declaration
protected override void Dispose(bool disposing)
Parameters
Type | Name | Description |
---|---|---|
System.Boolean | disposing | Boolean value to dispose the object. |
OnParametersSetAsync()
Method invoked when the component has received parameters from its parent.
Declaration
protected override Task OnParametersSetAsync()
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task | A System.Threading.Tasks.Task representing any asynchronous operation. |