Class FileAttachment
Data class for file attachments.
Inheritance
System.Object
FileAttachment
Namespace: PrinceXML.Wrapper
Assembly: PrinceXML.Wrapper.dll
Syntax
public class FileAttachment : object
Constructors
| Improve this Doc View SourceFileAttachment(String, String, String)
The FileAttachment
constructor.
Declaration
public FileAttachment(string url, string fileName = null, string description = null)
Parameters
Type | Name | Description |
---|---|---|
System.String | url | The URL of the file attachment. |
System.String | fileName | The optional filename of the file attachment. |
System.String | description | The optional description of the file attachment. |
Properties
| Improve this Doc View SourceDescription
Declaration
public string Description { get; }
Property Value
Type | Description |
---|---|
System.String | The description of the file attachment. |
FileName
Declaration
public string FileName { get; }
Property Value
Type | Description |
---|---|
System.String | The filename of the file attachment. |
Url
Declaration
public string Url { get; }
Property Value
Type | Description |
---|---|
System.String | The URL of the file attachment. |