 | RemDocumentDeleteNote Method |
Paperwork .Net Kütüphanesi
Dokümandan tot silmek için kullanılır.
Namespace:
Paperwork.Connect
Assembly:
Paperwork.Connect (in Paperwork.Connect.dll) Version: 5.0.0.0
Syntaxpublic a_GenericResult DeleteNote(
ObjectID objectId,
string message
)
Parameters
- objectId
- Type: ObjectID
Doküman nesne numarası, Silinecek Not - message
- Type: SystemString
Eklenecek not
Return Value
Type:
a_GenericResultVerilen doküman nesne numarasına göre, dokümandan not siler.
Examples
public void DeleteNote()
{
ObjectID oid = new ObjectID("FF000100000033F5");
string noteID = "10124";
a_GenericResult retval = p.rDocument.DeleteNote(oid, noteID);
if (retval.ErrorCode != 0)
throw new Exception(retval.Message);
}
See Also