Click or drag to resize

RemNavigationGetCheckOuts Method

Paperwork .Net Kütüphanesi
Checkout yapılan dosyaların listesini döner.

Namespace:  Paperwork.Connect
Assembly:  Paperwork.Connect (in Paperwork.Connect.dll) Version: 5.0.0.0
Syntax
C#
public a_NavigationInfo GetCheckOuts(
	int pageIndex,
	bool isMyDoc
)

Parameters

pageIndex
Type: SystemInt32
Sayfa numarası
isMyDoc
Type: SystemBoolean
Kullanıcıya ait dosyalar mı seçilecek? (mydoc)

Return Value

Type: a_NavigationInfo
ErrorCode = 0 ise verilen nesne numarasına ait klasörün yolunu döndürür.Aksi taktirde nesne numarasını kontrol ediniz.
Examples
C#
  

            public void GetCheckOuts()
            {
                int page_index = 1;
                bool mydoc = true;
                a_NavigationInfo checks = p.rNavigation.GetCheckOuts(page_index, mydoc);
                Console.WriteLine("Ad: {0}",                    checks.FolderName);
                Console.WriteLine("Yaratılış Tarihi: {0}",      checks.CreateDate);
                Console.WriteLine("Değiştiren Kullanıcı:{0}",   checks.LockOwner);
                Console.ReadLine();
            }
                 
See Also