_XDocument4.SignedDataBlocks - Propriété
Obtient une référence à la collection SignedDataBlocksCollection qui est associée à un objet XDocument .
Espace de noms : Microsoft.Office.Interop.InfoPath
Assembly : Microsoft.Office.Interop.InfoPath (dans Microsoft.Office.Interop.InfoPath.dll)
Syntaxe
'Déclaration
ReadOnly Property SignedDataBlocks As SignedDataBlocksCollection
Get
'Utilisation
Dim instance As _XDocument4
Dim value As SignedDataBlocksCollection
value = instance.SignedDataBlocks
SignedDataBlocksCollection SignedDataBlocks { get; }
Valeur de propriété
Type : Microsoft.Office.Interop.InfoPath.SignedDataBlocksCollection
Implémentations
Exemples
Dans l'exemple suivant, la propriété SignedDataBlocks de l'objet XDocument est utilisée pour obtenir une référence à la collection SignedDataBlocksCollection . Un objet individuel SignedDataBlockObject est ensuite accessibles à l'aide de l'indexation de tableau :
SignedDataBlocksCollection sblocks = thisXDocument.SignedDataBlocks;
SignedDataBlockObject sdblock = sblocks[0];