IDocumentMap Interface

Definition

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.

Applies to