DocumentGetAllParentDocuments Method |
Gets all parent documents, traversing the parent document chain by using the
Parent property.
Namespace:
Aloe.EnterpriseOne.Model.General
Assembly:
Aloe.EnterpriseOne.Model (in Aloe.EnterpriseOne.Model.dll) Version: 20.1.3.5
Syntaxpublic IEnumerable<Document> GetAllParentDocuments(
bool includeSelf = false
)
Public Function GetAllParentDocuments (
Optional includeSelf As Boolean = false
) As IEnumerable(Of Document)
public:
IEnumerable<Document^>^ GetAllParentDocuments(
bool includeSelf = false
)
member GetAllParentDocuments :
?includeSelf : bool
(* Defaults:
let _includeSelf = defaultArg includeSelf false
*)
-> IEnumerable<Document>
Parameters
- includeSelf (Optional)
- Type: SystemBoolean
if set to true the current document is included.
Return Value
Type:
IEnumerableDocument
The parent documents.
Exceptions
See Also