Click or drag to resize

RemDocument.History Method

Paperwork .Net Kütüphanesi
Doküman tarihçesini getirmek için kullanılır.

Namespace:  Paperwork.Connect
Assembly:  Paperwork.Connect (in Paperwork.Connect.dll) Version: 5.0.0.0
Syntax
C#
public a_HistoryList History(
	ObjectID objectId,
	int pageIndex
)

Parameters

objectId
Type: ObjectID
Doküman nesne numarası
pageIndex
Type: System.Int32
Sayfa sayısı birden fazla ise gösterilecek sayfa numarası

Return Value

Type: a_HistoryList
Doküman tarihçesini döner.
Examples
C#
 
            public void History() 
            {
                    string str_objectId = "FF00010000000001";
                    ObjectID oid = new ObjectID(str_objectId);
                    int pageindex = 1;
                    a_HistoryList retval = p.rDocument.History(oid, pageindex);

                    foreach (a_History his in retval.Items)
                        Console.WriteLine("Sahibi: {0}, İşlem Tarihi: {1}, İşlem Tipi: {2}, Açıklama: {3}", his.Owner, his.CreatedDate, his.HistoryType, his.Description);
                    Console.ReadLine();
            }
See Also