ASP.NET Core

Upgrade Guide User Guide Demos Support Forums Download
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class PdfXfaRadialType - ASP.NETCore API Reference | Syncfusion

    Show / Hide Table of Contents

    Class PdfXfaRadialType

    Specifies the direction of the color transition.

    Inheritance
    System.Object
    PdfXfaRadialType
    Namespace: Syncfusion.Pdf.Xfa
    Assembly: Syncfusion.Pdf.Portable.dll
    Syntax
    public sealed class PdfXfaRadialType : Enum
    Examples
    //Create a new PDF XFA document.
    PdfXfaDocument document = new PdfXfaDocument();
    //Create a form.
    PdfXfaForm parentForm = new PdfXfaForm(PdfXfaFlowDirection.Vertical, 595);
    parentForm.Margins.All = 10;
    //Create new XFA rectangle instance.
    PdfXfaRectangleField rect = new PdfXfaRectangleField("rect1", new SizeF(200, 100));
    //Create new XFA brush.
    PdfXfaRadialBrush brush = new PdfXfaRadialBrush(Color.Red, Color.Yellow);
    //Set the start color.
    brush.StartColor = Color.Black;
    //Set the end color.
    brush.EndColor = Color.HotPink;
    //Set the type.
    brush.Type = PdfXfaRadialType.CenterToEdge;
    //Set the linear brush
    rect.Border.FillColor = brush;
    //Add the field to form.
    parentForm.Fields.Add(rect);            
    document.XfaForm = parentForm;
    //Save the document.
    document.Save("output.pdf", PdfXfaType.Dynamic);
    //Close the document
    document.Close();
    'Create a new PDF XFA document.
    Dim document As New PdfXfaDocument()
    'Create a form.
    Dim parentForm As New PdfXfaForm(PdfXfaFlowDirection.Vertical, 595)
    parentForm.Margins.All = 10
    'Create new XFA rectangle instance.
    Dim rect As New PdfXfaRectangleField("rect1", New SizeF(200, 100))
    'Create new XFA brush.
    Dim brush As New PdfXfaRadialBrush(Color.Red, Color.Yellow)
    'Set the start color.
    brush.StartColor = Color.Black
    'Set the end color.
    brush.EndColor = Color.HotPink
    'Set the type.
    brush.Type = PdfXfaRadialType.CenterToEdge
    'Set the linear brush
    rect.Border.FillColor = brush
    'Add the field to form.
    parentForm.Fields.Add(rect)
    document.XfaForm = parentForm
    'Save the document.
    document.Save("output.pdf", PdfXfaType.Dynamic)
    'Close the document
    document.Close()

    Fields

    CenterToEdge

    The start color appears at the center of the object and transitions into the end color at the outer edge.

    Declaration
    public const PdfXfaRadialType CenterToEdge
    Field Value
    Type Description
    PdfXfaRadialType

    EdgeToCenter

    The start color appears at the outer edge of the object and transitions into the end color at the center.

    Declaration
    public const PdfXfaRadialType EdgeToCenter
    Field Value
    Type Description
    PdfXfaRadialType

    value__

    Declaration
    public int value__
    Field Value
    Type Description
    System.Int32
    Back to top Generated by DocFX
    Copyright © 2001 - 2021 Syncfusion Inc. All Rights Reserved