 | PdfFileAttachmentAnnotation(PdfPage, FileIconNames, String, Byte, FS_COLOR, Single, Single) Constructor |
Namespace: Patagames.Pdf.Net.AnnotationsAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic PdfFileAttachmentAnnotation(
PdfPage page,
FileIconNames icon,
string filename,
byte[] fileData,
FS_COLOR color,
float x,
float y
)
Public Sub New (
page As PdfPage,
icon As FileIconNames,
filename As String,
fileData As Byte(),
color As FS_COLOR,
x As Single,
y As Single
)
public:
PdfFileAttachmentAnnotation(
PdfPage^ page,
FileIconNames icon,
String^ filename,
array<unsigned char>^ fileData,
FS_COLOR color,
float x,
float y
)
new :
page : PdfPage *
icon : FileIconNames *
filename : string *
fileData : byte[] *
color : FS_COLOR *
x : float32 *
y : float32 -> PdfFileAttachmentAnnotation
public PdfFileAttachmentAnnotation(
PdfPage page,
FileIconNames icon,
String filename,
byte[] fileData,
FS_COLOR color,
float x,
float y
)
Patagames.Pdf.Net.Annotations.PdfFileAttachmentAnnotation = function(page, icon, filename, fileData, color, x, y);
Parameters
- page PdfPage
- The PDF page associated with annotation.
- icon FileIconNames
- The name of a standard icon to be used in displaying the annotation.
- filename String
- The name of the attached file.
- fileData Byte
- The contents of the attached file.
- color FS_COLOR
- Annotation color.
- x Single
- The x-coordinate of this annotation.
- y Single
- The y-coordinate of this annotation.
See Also