DocumentBase.DocumentLibraryVersions – vlastnost
Získá DocumentLibraryVersions kolekci, která představuje kolekci verzí sdílených dokumentů, která je povolena Správa verzí a který je uložen v knihovně dokumentů na serveru.
Obor názvů: Microsoft.Office.Tools.Word
Sestavení: Microsoft.Office.Tools.Word.v4.0.Utilities (v Microsoft.Office.Tools.Word.v4.0.Utilities.dll)
Syntaxe
'Deklarace
Public ReadOnly Property DocumentLibraryVersions As DocumentLibraryVersions
public DocumentLibraryVersions DocumentLibraryVersions { get; }
Hodnota vlastnosti
Typ: Microsoft.Office.Core.DocumentLibraryVersions
A DocumentLibraryVersions kolekce.
Příklady
Následující příklad kódu zobrazuje zprávu, která ukazuje celkový počet verze dokumentu, pokud je povolena Správa verzí v dokumentu.Chcete-li použít tento příklad, spusťte jej z ThisDocument třídy v projektu na úrovni dokumentu.
Private Sub DocumentDocumentLibraryVersions()
Dim dlvVersions As Office.DocumentLibraryVersions = Me.DocumentLibraryVersions
Dim strVersionInfo As String
If dlvVersions.IsVersioningEnabled = True Then
strVersionInfo = "This docment has " & dlvVersions.Count & " versions"
Else
strVersionInfo = "Versioning is not enabled for this document."
End If
MessageBox.Show(strVersionInfo, "Version Information", MessageBoxButtons.OK)
End Sub
private void DocumentDocumentLibraryVersions()
{
Office.DocumentLibraryVersions dlvVersions = this.DocumentLibraryVersions;
string strVersionInfo;
if (dlvVersions.IsVersioningEnabled == true)
{
strVersionInfo = "This docment has " + dlvVersions.Count +
" versions";
}
else
{
strVersionInfo = "Versioning is not enabled for this document.";
}
MessageBox.Show(strVersionInfo, "Version Information", MessageBoxButtons.OK);
}
Zabezpečení rozhraní .NET Framework
- Plná důvěra přímému volajícímu. Částečně zabezpečený kód nemůže tento člen použít. Další informace naleznete v tématu Používání knihoven z částečně důvěryhodného kódu.