Creates a URL file specification.
Namespace:
pdftron.PDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public static FileSpec CreateURL(
SDFDoc doc,
string url
)
Public Shared Function CreateURL (
doc As SDFDoc,
url As String
) As FileSpec
public:
static FileSpec^ CreateURL(
[InAttribute] SDFDoc^ doc,
[InAttribute] String^ url
)
pdftron.PDF.FileSpec.CreateURL = function(doc, url);
Parameters
- doc
- Type: pdftron.SDFSDFDoc
- A document to which the FileSpec should be added. To obtain
SDF::Doc from PDFDoc use PDFDoc::GetSDFDoc() or Obj::GetDoc().
- url
- Type: SystemString
- A uniform resource locator (URL) of the form defined in
Internet RFC 1738, Uniform Resource Locators Specification.
Return Value
Type:
FileSpec newly created FileSpec object.
See Also