ComponentOne Word for UWP
C1.UWP.Word Assembly / C1.Xaml.Word Namespace / DrawingElementEventArgs Class / DrawingElementEventArgs Constructor
Element being rendered.
Root of the element being rendered.
Coordinates, in logical pixels, of the element being rendered.
Transform between logical pixels and PDF page units (points).

In This Topic
    DrawingElementEventArgs Constructor
    In This Topic
    Initializes a new instance of a DrawingElementEventArgs.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal e As FrameworkElement, _
       ByVal root As FrameworkElement, _
       ByVal bounds As Rect, _
       ByVal documentTransform As Transform _
    )
    public DrawingElementEventArgs( 
       FrameworkElement e,
       FrameworkElement root,
       Rect bounds,
       Transform documentTransform
    )

    Parameters

    e
    Element being rendered.
    root
    Root of the element being rendered.
    bounds
    Coordinates, in logical pixels, of the element being rendered.
    documentTransform
    Transform between logical pixels and PDF page units (points).
    See Also