Click or drag to resize

RemFileloadAnnotation Method

Paperwork .Net Kütüphanesi
Belirteçleri getirmek için kullanılır.

Namespace:  Paperwork.Connect
Assembly:  Paperwork.Connect (in Paperwork.Connect.dll) Version: 5.0.0.0
Syntax
C#
public Dictionary<int, string> loadAnnotation(
	ObjectID objectId,
	out int aErrorCode,
	out string aErrorMessage
)

Parameters

objectId
Type: ObjectID
Doküman numarası
aErrorCode
Type: SystemInt32
Hata kodu
aErrorMessage
Type: SystemString
Hata mesajı

Return Value

Type: DictionaryInt32, String
Belirteçleri döndürür.
Examples
C#
public void LoadAnnotation()
{
    ObjectID oid = new ObjectID("FF00010000002CC0");
    int err_code;
    string err_message;

    Dictionary<int, string> retval = p.rFile.loadAnnotation(oid, out err_code, out err_message);
    foreach (var item in retval.Values)
        Console.WriteLine(item + "\n");
    Console.ReadLine();
}
See Also