Skip to main content
A newer version of this page is available. .

PopOutImageProperties Class

Contains settings that define a toolbar item’s pop-out image.

Namespace: DevExpress.Web.ASPxHtmlEditor

Assembly: DevExpress.Web.ASPxHtmlEditor.v20.2.dll

NuGet Package: DevExpress.Web

Declaration

public class PopOutImageProperties :
    ItemImagePropertiesBase

The following members return PopOutImageProperties objects:

Remarks

Use the properties exposed by the PopOutImageProperties class to specify the URL of the image source, define the image size and position, specify the alternate text displayed instead of the image when the image is unavailable, etc. These settings can be accessed via the HtmlEditorImages.ToolbarPopOut property.

All graphic file formats that can be interpreted by Internet browsers are supported. Note that if a PNG image with an alpha channel is specified via the ImagePropertiesBase.Url property, the image’s size should be defined explicitly via the ImagePropertiesBase.Width and ImagePropertiesBase.Height properties, in order to correctly display the image at runtime.

<dx:ASPxHtmlEditor ID="ASPxHtmlEditor1" runat="server">
    <Images>
        <ToolbarPopOut AlternateText="text">
            <SpriteProperties CssClass="test_class1" DisabledLeft="190px" 
            DisabledTop="115px" Top="190px" Left="90px" />
        </ToolbarPopOut>
    </Images>
</dx:ASPxHtmlEditor>
See Also