 | PdfWebLinkCollection Class |
Inheritance Hierarchy Namespace: Patagames.Pdf.NetAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic class PdfWebLinkCollection : IList<PdfWebLink>,
ICollection<PdfWebLink>, IEnumerable<PdfWebLink>, IEnumerable,
IDisposable
Public Class PdfWebLinkCollection
Implements IList(Of PdfWebLink), ICollection(Of PdfWebLink),
IEnumerable(Of PdfWebLink), IEnumerable, IDisposable
public ref class PdfWebLinkCollection : IList<PdfWebLink^>,
ICollection<PdfWebLink^>, IEnumerable<PdfWebLink^>, IEnumerable,
IDisposable
type PdfWebLinkCollection =
class
interface IList<PdfWebLink>
interface ICollection<PdfWebLink>
interface IEnumerable<PdfWebLink>
interface IEnumerable
interface IDisposable
end
public class PdfWebLinkCollection implements IList<PdfWebLink>,
ICollection<PdfWebLink>, IEnumerable<PdfWebLink>, IEnumerable,
IDisposable
Patagames.Pdf.Net.PdfWebLinkCollection = function();
Type.createClass(
'Patagames.Pdf.Net.PdfWebLinkCollection',
null,
IList`1,
ICollection`1,
IEnumerable`1,
IEnumerable,
IDisposable);
The PdfWebLinkCollection type exposes the following members.
Properties | Name | Description |
---|
 | Count |
Gets the number of of detected web links actually contained in the collections.
|
 | Handle |
Gets the Pdfium SDK handle that the web links is bound to
|
 | IsDisposed |
Gets a value indicating whether the object has been disposed of.
Field Valuetrue if the collection has been disposed of; otherwise, false. |
 | IsReadOnly |
Gets a value indicating whether the collection is read-only.
|
 | Item |
Gets the PdfWebLink at the specified index
|
Top
Methods
Remarks
Weblinks are those links implicitly embedded in PDF pages. PDF also has a type of annotation
called "link", FPDFTEXT doesn't deal with that kind of link. FPDFTEXT weblink feature is
useful for automatically detecting links in the page contents. For example, things like
"http://www.patagames.com" will be detected, so applications can allow user to click on those
characters to activate the link, even the PDF doesn't come with link annotations.
Dispose must be called to release resources.
See Also