ImageGear .NET v25.2 - Updated
ImageGear.Web.Services Assembly / ImageGear.Web.DataProviders Namespace / MarkupFileImageDataProvider Class / ParseArtFileName(String,String,String) Method
The file name to parse
(out) The Document ID
(out) The Markup Layer Record ID




In This Topic
    ParseArtFileName(String,String,String) Method
    In This Topic
    Parses the given file name according to this provider's ArtDataFileNameFormat and extracts the Document Identifier, Markup Layer Record ID, and Markup Layer Name where applicable.
    Syntax
    'Declaration
     
    Public Function ParseArtFileName( _
       ByVal filename As String, _
       ByRef documentId As String, _
       ByRef markupLayerRecordId As String _
    ) As Boolean
    'Usage
     
    Dim instance As MarkupFileImageDataProvider
    Dim filename As String
    Dim documentId As String
    Dim markupLayerRecordId As String
    Dim value As Boolean
     
    value = instance.ParseArtFileName(filename, documentId, markupLayerRecordId)
    public bool ParseArtFileName( 
       string filename,
       out string documentId,
       out string markupLayerRecordId
    )
    public: bool ParseArtFileName( 
       string* filename,
       [PARAMFLAG::Out] string* documentId,
       [PARAMFLAG::Out] string* markupLayerRecordId
    ) 
    public:
    bool ParseArtFileName( 
       String^ filename,
       [Out] String^ documentId,
       [Out] String^ markupLayerRecordId
    ) 

    Parameters

    filename
    The file name to parse
    documentId
    (out) The Document ID
    markupLayerRecordId
    (out) The Markup Layer Record ID

    Return Value

    A boolean indicating whether the parse was successful according to ArtDataFileNameFormat
    See Also