CreateResourceUrl Delegate |
Represents the method that creates URL for HTML resource.
Namespace: GroupDocs.Viewer.InterfacesAssembly: GroupDocs.Viewer (in GroupDocs.Viewer.dll) Version: 22.9
Syntax public delegate string CreateResourceUrl(
int pageNumber,
Resource resource
)
Public Delegate Function CreateResourceUrl (
pageNumber As Integer,
resource As Resource
) As String
public delegate String^ CreateResourceUrl(
int pageNumber,
Resource^ resource
)
type CreateResourceUrl =
delegate of
pageNumber : int *
resource : Resource -> string
Parameters
- pageNumber
- Type: SystemInt32
Number of the page. - resource
- Type: GroupDocs.Viewer.ResultsResource
HTML resource such as font, style, image or graphics.
Return Value
Type:
StringThe URL of the HTML resource.
See Also