IDocumentMap Interface
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Represents a document map.
public interface class IDocumentMap : System::Collections::Generic::IEnumerator<Microsoft::ReportingServices::ReportProcessing::OnDemandDocumentMapNode ^>
public interface IDocumentMap : System.Collections.Generic.IEnumerator<Microsoft.ReportingServices.ReportProcessing.OnDemandDocumentMapNode>
type IDocumentMap = interface
interface IEnumerator<OnDemandDocumentMapNode>
interface IDisposable
interface IEnumerator
Public Interface IDocumentMap
Implements IEnumerator(Of OnDemandDocumentMapNode)
- Implements
Examples
public class MyDocumentMapImpl : IdocumentMap
{
private bool m_isClosed = true;
...
public void Close()
{
m_isClosed = true;
}
}
Public Class MyDocumentMapImpl
Inherits IdocumentMap
Private m_isClosed As Boolean = True
...
Public Sub Close()
m_isClosed = True
End Sub
End Class
Methods
Close() |
Performs processing when the document map is closed by the end user. |