Sends pre-notification before Toolbox Browser writes to a document.
.NET Syntax
Visual Basic (Declaration) | |
---|
Public Delegate Function DPDMDocManagerEvents_BeforeWritingToDocumentEventHandler( _
ByVal fileName As String _
) As Integer |
Visual Basic (Usage) | |
---|
Dim instance As New DPDMDocManagerEvents_BeforeWritingToDocumentEventHandler(AddressOf HandlerMethod)
|
C# | |
---|
public delegate int DPDMDocManagerEvents_BeforeWritingToDocumentEventHandler(
string fileName
) |
C++/CLI | |
---|
public delegate int DPDMDocManagerEvents_BeforeWritingToDocumentEventHandler(
& String^ fileName
) |
Parameters
- fileName
Document to which to write
Return Value
If S_OK is returned without a status, an error occurred. If S_FALSE is returned, Toolbox uses the specified filename and proceeds as usual.
Remarks