Click or drag to resize

RemLookupGetDocuments Method

Paperwork .Net Kütüphanesi
Sistemde kayıtlı ilk 1000 kayıt listesi

Namespace:  Paperwork.Connect
Assembly:  Paperwork.Connect (in Paperwork.Connect.dll) Version: 5.0.0.0
Syntax
C#
public ObservableCollection<LookupItem> GetDocuments()

Return Value

Type: ObservableCollectionLookupItem
ObservableCollection(LookupItem) tipinde belgelerin listsini döner.
Examples
C#
public void GetDocuments() 
{
    ObservableCollection<LookupItem> getdocuments = p.rLookup.GetDocuments();

    foreach (LookupItem item in getdocuments)
    {
        Console.WriteLine("Belge Adı: {0}", item.Name);
    }
}

     
See Also