Click or drag to resize

RemDocumentDoLike Method

Paperwork .Net Kütüphanesi
PW_SYSOBJECT_LIKE tablosuna nesne numarası verilen dokümanı satır olarak ekler.

Namespace:  Paperwork.Connect
Assembly:  Paperwork.Connect (in Paperwork.Connect.dll) Version: 5.0.0.0
Syntax
C#
public a_GenericResult DoLike(
	string objectId
)

Parameters

objectId
Type: SystemString
Dokümanın nesne numarası.

Return Value

Type: a_GenericResult
Eğer ErrorCode=0 ise tabloya insert yapar.
Examples
C#
    public void DoLike()
{  
    ObjectID oid = new ObjectID("FF0001000001AF30");
    a_GenericResult retVal = p.rDocument.DoLike("FF0001000001AF30");
    if (retVal.ErrorCode != 0)
        throw new Exception(retVal.Message);
    else
        Console.WriteLine(retVal.Result);
    Console.ReadLine();
}
See Also