Remarque
L’accès à cette page nécessite une autorisation. Vous pouvez essayer de vous connecter ou de modifier des répertoires.
L’accès à cette page nécessite une autorisation. Vous pouvez essayer de modifier des répertoires.
Represents a document map.
Espace de noms : Microsoft.ReportingServices.ReportProcessing
Assembly : Microsoft.ReportingServices.ProcessingCore (en Microsoft.ReportingServices.ProcessingCore.dll)
Syntaxe
'Déclaration
Public Interface IDocumentMap _
Inherits IEnumerator(Of OnDemandDocumentMapNode), IDisposable, IEnumerator
'Utilisation
Dim instance As IDocumentMap
public interface IDocumentMap : IEnumerator<OnDemandDocumentMapNode>,
IDisposable, IEnumerator
public interface class IDocumentMap : IEnumerator<OnDemandDocumentMapNode^>,
IDisposable, IEnumerator
type IDocumentMap =
interface
interface IEnumerator<OnDemandDocumentMapNode>
interface IDisposable
interface IEnumerator
end
public interface IDocumentMap extends IEnumerator<OnDemandDocumentMapNode>, IDisposable, IEnumerator
Le type IDocumentMap expose les membres suivants.
Propriétés
| Nom | Description | |
|---|---|---|
![]() |
Current | (hérité de IEnumerator<OnDemandDocumentMapNode>.) |
Haut de la page
Méthodes
| Nom | Description | |
|---|---|---|
![]() |
Close | Performs processing when the document map is closed by the end user. |
![]() |
Dispose | (hérité de IDisposable.) |
![]() |
MoveNext | (hérité de IEnumerator.) |
![]() |
Reset | (hérité de IEnumerator.) |
Haut de la page
Exemples
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
.gif)
.gif)