PDF for UWP | ComponentOne
C1.Xaml.Pdf Namespace / C1PdfDocument Class / AddAttachment Method / AddAttachment(StorageFile,Rect,Int32,AttachmentIconEnum,Color) Method
The file that will be included as an attachment.
Area of the page that will contain the attachment (in points measured from the top-left corner of the page).
Index of the page that contains the attachment.
AttachmentIconEnum value that determines the appearance of the attachment icon.
The color of the attachment icon.

In This Topic
    AddAttachment(StorageFile,Rect,Int32,AttachmentIconEnum,Color) Method
    In This Topic
    Adds a file attachment to the document.
    Syntax
    'Declaration
     
    
    Public Overloads Sub AddAttachment( _
       ByVal file As StorageFile, _
       ByVal rc As Rect, _
       ByVal page As Integer, _
       ByVal icon As AttachmentIconEnum, _
       ByVal iconColor As Color _
    ) 
    public void AddAttachment( 
       StorageFile file,
       Rect rc,
       int page,
       AttachmentIconEnum icon,
       Color iconColor
    )

    Parameters

    file
    The file that will be included as an attachment.
    rc
    Area of the page that will contain the attachment (in points measured from the top-left corner of the page).
    page
    Index of the page that contains the attachment.
    icon
    AttachmentIconEnum value that determines the appearance of the attachment icon.
    iconColor
    The color of the attachment icon.
    Remarks
    When the user moves the mouse over an area of the page that contains an attachment, the mouse pointer and tool tip change to indicate that the user can retrieve the attachment. The user can right-click the attachment area to open or save the attachment.
    See Also