VintaSoft Imaging .NET SDK 12.4: Documentation for .NET developer
Vintasoft.Imaging.UI Namespace / ImageViewer Class / RenderOnlyVisibleImages Property
Syntax Remarks Requirements SeeAlso
In This Topic
    RenderOnlyVisibleImages Property (ImageViewer)
    In This Topic
    Gets or sets a value indicating whether the image viewer must render only visible images.
    Syntax
    'Declaration
    
    <DefaultValueAttribute(True)>
    <CategoryAttribute("VintaSoft")>
    <DescriptionAttribute("A value indicating whether the image viewer must render only visible images.")>
    Public Property RenderOnlyVisibleImages As Boolean
    
    
    [DefaultValue(True)]
    [Category("VintaSoft")]
    [Description("A value indicating whether the image viewer must render only visible images.")]
    public bool RenderOnlyVisibleImages { get; set; }
    
    
    [DefaultValue(True)]
    [Category("VintaSoft")]
    [Description("A value indicating whether the image viewer must render only visible images.")]
    public: __property bool get_RenderOnlyVisibleImages();
    public: __property void set_RenderOnlyVisibleImages(
    bool value
    );
    [DefaultValue(True)]
    [Category("VintaSoft")]
    [Description("A value indicating whether the image viewer must render only visible images.")]
    public:
    property bool RenderOnlyVisibleImages { bool get(); void set(bool value); }

    Property Value

    true - the image viewer must render only visible images; false - the image viewer must render all images.
    Default value is true.
    Remarks

    If all images in image viewer must be rendered, make sure that size of the image viewer cache is enough for storing all rendered images in memory.

    Requirements

    Target Platforms: .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also