ImageGear .NET v25.2 - Updated
ImageGear.Web Assembly / ImageGear.Web.UI Namespace / PageView Class / VectorFormatsRendering Property




In This Topic
    VectorFormatsRendering Property (PageView)
    In This Topic
    Gets or sets the vector formats rendering way.
    Syntax
    'Declaration
     
    <CategoryAttribute("PageView Properties")>
    <BrowsableAttribute(True)>
    <DefaultValueAttribute(Mono.Cecil.CustomAttributeArgument)>
    <DescriptionAttribute("Gets or sets a value indicating the way of vector format images rendering.")>
    Public Property VectorFormatsRendering As VectorFormatsRendering
    'Usage
     
    Dim instance As PageView
    Dim value As VectorFormatsRendering
     
    instance.VectorFormatsRendering = value
     
    value = instance.VectorFormatsRendering
    [Category("PageView Properties")]
    [Browsable(true)]
    [DefaultValue(Mono.Cecil.CustomAttributeArgument)]
    [Description("Gets or sets a value indicating the way of vector format images rendering.")]
    public VectorFormatsRendering VectorFormatsRendering {get; set;}
    [Category("PageView Properties")]
    [Browsable(true)]
    [DefaultValue(Mono.Cecil.CustomAttributeArgument)]
    [Description("Gets or sets a value indicating the way of vector format images rendering.")]
    public: __property VectorFormatsRendering get_VectorFormatsRendering();
    public: __property void set_VectorFormatsRendering( 
       VectorFormatsRendering value
    );
    [Category("PageView Properties")]
    [Browsable(true)]
    [DefaultValue(Mono.Cecil.CustomAttributeArgument)]
    [Description("Gets or sets a value indicating the way of vector format images rendering.")]
    public:
    property VectorFormatsRendering VectorFormatsRendering {
       VectorFormatsRendering get();
       void set (    VectorFormatsRendering value);
    }

    Property Value

    The enumeration value represents options for vectors format rendering. Default value of property is VectorFormatsRendering.SVG .
    Remarks
    This property defines the option for rendering vector format images. It must be set to one of the values in the enumeration VectorFormatsRendering. Default value VectorFormatsRendering.SVG defines the mode of rendering of vector format images through SVG format. Set the value of this property to VectorFormatsRendering.Raster for using PNG or JPEG raster formats for rendering of vector format images.
    See Also