Document Solutions for Word
GrapeCity.Documents.Word Assembly / GrapeCity.Documents.Word Namespace / OnLoadInvalidUriHandler Delegate
The URI of the part with an invalid relationship.
The id of the relationship.
The malformed URI address.

In This Topic
    OnLoadInvalidUriHandler Delegate
    In This Topic
    Represents a delegate that is called when a malformed URI is about to load.
    Syntax
    'Declaration
     
    Public Delegate Function OnLoadInvalidUriHandler( _
       ByVal partUri As System.Uri, _
       ByVal id As System.String, _
       ByVal uri As System.String _
    ) As System.Uri
    public delegate System.Uri OnLoadInvalidUriHandler( 
       System.Uri partUri,
       System.string id,
       System.string uri
    )

    Parameters

    partUri
    The URI of the part with an invalid relationship.
    id
    The id of the relationship.
    uri
    The malformed URI address.

    Return Value

    A valid URI created from the malformed address string.
    See Also