ImageGear .NET v25.2 - Updated
ImageGear.Web.Services Assembly / ImageGear.Web.DataProviders Namespace / MarkupArtDocumentDataConnection Class / Create Method
The Stream containing the Markup Layer data




In This Topic
    Create Method (MarkupArtDocumentDataConnection)
    In This Topic
    Creates a new Markup Layer. This method returns the Markup Layer Record ID for the newly created Markup Layer, which is assigned by the Markup Data Provider and sent back to the client viewer.
    Syntax
    'Declaration
     
    Public MustOverride Function Create( _
       ByVal artDataStream As Stream _
    ) As String
    'Usage
     
    Dim instance As MarkupArtDocumentDataConnection
    Dim artDataStream As Stream
    Dim value As String
     
    value = instance.Create(artDataStream)
    public abstract string Create( 
       Stream artDataStream
    )
    public: abstract string* Create( 
       Stream* artDataStream
    ) 
    public:
    abstract String^ Create( 
       Stream^ artDataStream
    ) 

    Parameters

    artDataStream
    The Stream containing the Markup Layer data

    Return Value

    The Markup Layer Record ID for the newly created Markup Layer
    See Also