Click or drag to resize

RemDocumentDoUnLike Method

Paperwork .Net Kütüphanesi
PW_SYSOBJECT_LIKE tablosundan nesne numarası verilen satırı siler.

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

Parameters

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

Return Value

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