Extended .NET SDK Documentation 2025 SP0
Loading...
Searching...
No Matches
OdDbBlockPropertiesTable.cs
Go to the documentation of this file.
1//------------------------------------------------------------------------------
2// <auto-generated />
3//
4// This file was automatically generated by SWIG (http://www.swig.org).
5// Version 4.0.2
6//
7// Do not make changes to this file unless you know what you are doing--modify
8// the SWIG interface file instead.
9//------------------------------------------------------------------------------
10
11namespace Teigha.TD {
12
13using System;
14using System.Runtime.InteropServices;
15using Teigha.Core;
16
18 private Object locker = new Object();
19 private HandleRef swigCPtr;
20 [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
21 public OdDbBlockPropertiesTable(IntPtr cPtr, bool cMemoryOwn) : base(TD_DbPINVOKE.OdDbBlockPropertiesTable_SWIGUpcast(cPtr), cMemoryOwn) {
22 swigCPtr = new HandleRef(this, cPtr);
23 }
24
25 [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
26 public static HandleRef getCPtr(OdDbBlockPropertiesTable obj) {
27 return (obj == null) ? new HandleRef(null, IntPtr.Zero) : obj.swigCPtr;
28 }
29
30 protected override void Dispose(bool disposing) {
31 lock(this) {
32 if (swigCPtr.Handle != global::System.IntPtr.Zero) {
33 if (swigCMemOwn) {
34 swigCMemOwn = false;
36 }
37 swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
38 }
39 base.Dispose(disposing);
40 }
41 }
42
43 public static OdDbBlockPropertiesTable cast(OdRxObject pObj) {// OdSmartPtr<OdDbBlockPropertiesTable>
44 MemoryManager mMan = MemoryManager.GetMemoryManager();
45 MemoryTransaction mTrans = mMan.GetCurrentTransaction(); // MemoryTransaction #17
47
48 OdDbBlockPropertiesTable ret = null;
49 if (null != mTrans)
50 {
51 mTrans.AddObject((OdDbBlockPropertiesTable)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdDbBlockPropertiesTable),ptr, true));
52 ret = (OdDbBlockPropertiesTable)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdDbBlockPropertiesTable),ptr, false);
53 }
54 else
55 {
56 ret = (OdDbBlockPropertiesTable)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdDbBlockPropertiesTable),ptr, true);
57 }
58
60 return ret;
61}
62
63 public new static OdRxClass desc() {
64 OdRxClass ret = (OdRxClass)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdRxClass),TD_DbPINVOKE.OdDbBlockPropertiesTable_desc(),false); /*createInt 3_2*/
65
67 return ret;
68}
69
70 public override OdRxClass isA() {
71 OdRxClass ret = (OdRxClass)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdRxClass),TD_DbPINVOKE.OdDbBlockPropertiesTable_isA(swigCPtr),false); /*createInt 3_2*/
72
74 return ret;
75}
76
77 public override OdRxObject queryX(OdRxClass protocolClass) {
78 OdRxObject ret = (OdRxObject)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdRxObject),TD_DbPINVOKE.OdDbBlockPropertiesTable_queryX(swigCPtr, OdRxClass.getCPtr(protocolClass)),false); /*createInt 3_2*/
79
81 return ret;
82}
83
84 public new static OdDbBlockPropertiesTable createObject() {// OdSmartPtr<OdDbBlockPropertiesTable>
85 MemoryManager mMan = MemoryManager.GetMemoryManager();
86 MemoryTransaction mTrans = mMan.GetCurrentTransaction(); // MemoryTransaction #17
88
89 OdDbBlockPropertiesTable ret = null;
90 if (null != mTrans)
91 {
92 mTrans.AddObject((OdDbBlockPropertiesTable)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdDbBlockPropertiesTable),ptr, true));
93 ret = (OdDbBlockPropertiesTable)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdDbBlockPropertiesTable),ptr, false);
94 }
95 else
96 {
97 ret = (OdDbBlockPropertiesTable)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdDbBlockPropertiesTable),ptr, true);
98 }
99
101 return ret;
102}
103
109
114
120
125
131
137
138 public OdResult getCellValue(int column, int row, ref OdResBuf /*OUT_PARAM for SMARTPTR*/ rb) {
139 /*OUT_PARAM for SMARTPTR pre*/ IntPtr tmp_rb = rb == null ? IntPtr.Zero : OdResBuf.getCPtr(rb).Handle;
140 IntPtr saved_rb = tmp_rb;
141 /*OUT_PARAM for SMARTPTR pre*/
142 try {
143 OdResult ret = (OdResult)TD_DbPINVOKE.OdDbBlockPropertiesTable_getCellValue(swigCPtr, column, row, ref tmp_rb /*OUT_PARAM for SMARTPTR*/);
145 return ret;
146 } finally {
147if(tmp_rb == IntPtr.Zero) rb = null;
148 if(tmp_rb != IntPtr.Zero && tmp_rb != saved_rb)
149 {
150 MemoryTransaction mTrans_rb = MemoryManager.GetMemoryManager().GetCurrentTransaction();
151 if(mTrans_rb != null)
152 mTrans_rb.AddObject(Teigha.Core.Helpers.odCreateObjectInternal<OdResBuf>(typeof(OdResBuf), tmp_rb, true));
153 rb = Teigha.Core.Helpers.odCreateObjectInternal<OdResBuf>(typeof(OdResBuf), tmp_rb, mTrans_rb == null);
154 /*OUT_PARAM for SMARTPTR*/
155 }
156 }
157 }
158
159 public OdResult setCellValue(int column, int row, OdResBuf rb) {
162 return ret;
163 }
164
165 public OdResult getCellValueString(int column, int row, ref string s) {
166IntPtr tmp_s = Marshal.StringToCoTaskMemUni(s);
167 IntPtr saved_s = tmp_s;
168 try {
169 OdResult ret = (OdResult)TD_DbPINVOKE.OdDbBlockPropertiesTable_getCellValueString(swigCPtr, column, row, ref tmp_s);
171 return ret;
172 } finally {
173if (tmp_s != saved_s) s = Marshal.PtrToStringUni(tmp_s);
174 }
175 }
176
177 public bool constant(int column) {
178 bool ret = TD_DbPINVOKE.OdDbBlockPropertiesTable_constant(swigCPtr, column);
180 return ret;
181 }
182
183 public OdResult setConstant(int column, bool val) {
186 return ret;
187 }
188
189 public bool editable(int column) {
190 bool ret = TD_DbPINVOKE.OdDbBlockPropertiesTable_editable(swigCPtr, column);
192 return ret;
193 }
194
195 public OdResult setEditable(int column, bool val) {
198 return ret;
199 }
200
201 public bool removable(int column) {
202 bool ret = TD_DbPINVOKE.OdDbBlockPropertiesTable_removable(swigCPtr, column);
204 return ret;
205 }
206
207 public OdResult setRemovable(int column, bool val) {
210 return ret;
211 }
212
213 public bool isAngular(int column) {
214 bool ret = TD_DbPINVOKE.OdDbBlockPropertiesTable_isAngular(swigCPtr, column);
216 return ret;
217 }
218
219 public bool isAttribute(int arg0) {
220 bool ret = TD_DbPINVOKE.OdDbBlockPropertiesTable_isAttribute(swigCPtr, arg0);
222 return ret;
223 }
224
230
235
236 public OdResBuf defaultValue(int column) {// OdResBufPtr
237 MemoryManager mMan = MemoryManager.GetMemoryManager();
238 MemoryTransaction mTrans = mMan.GetCurrentTransaction(); // MemoryTransaction #17
239 IntPtr ptr = TD_DbPINVOKE.OdDbBlockPropertiesTable_defaultValue(swigCPtr, column);
240
241 OdResBuf ret = null;
242 if (null != mTrans)
243 {
244 mTrans.AddObject((OdResBuf)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdResBuf),ptr, true));
245 ret = (OdResBuf)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdResBuf),ptr, false);
246 }
247 else
248 {
249 ret = (OdResBuf)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdResBuf),ptr, true);
250 }
251
253 return ret;
254}
255
260
261 public String format(int column) {
262 string ret = TD_DbPINVOKE.OdDbBlockPropertiesTable_format(swigCPtr, column);
264 return ret;
265}
266
271
272 public bool mustMatch() {
275 return ret;
276 }
277
282
287
288 public OdResBuf unmatchedValue(int column) {// OdResBufPtr
289 MemoryManager mMan = MemoryManager.GetMemoryManager();
290 MemoryTransaction mTrans = mMan.GetCurrentTransaction(); // MemoryTransaction #17
291 IntPtr ptr = TD_DbPINVOKE.OdDbBlockPropertiesTable_unmatchedValue(swigCPtr, column);
292
293 OdResBuf ret = null;
294 if (null != mTrans)
295 {
296 mTrans.AddObject((OdResBuf)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdResBuf),ptr, true));
297 ret = (OdResBuf)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdResBuf),ptr, false);
298 }
299 else
300 {
301 ret = (OdResBuf)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdResBuf),ptr, true);
302 }
303
305 return ret;
306}
307
308 public String getColumnName(int column) {
309 string ret = TD_DbPINVOKE.OdDbBlockPropertiesTable_getColumnName(swigCPtr, column);
311 return ret;
312}
313
314 public String GetName(Int32 iColumn) {
315 string ret = TD_DbPINVOKE.OdDbBlockPropertiesTable_GetName(swigCPtr, iColumn /*SIMPLETYPE*/);
317 return ret;
318}
319
320 public Int32 GetColumnCount() {
321// test csout
322 /*SIMPLETYPE*/
325 return ret;
326 }
327
328 public Int32 GetRowCount() {
329// test csout
330 /*SIMPLETYPE*/
333 return ret;
334 }
335
343
344 public OdDbObjectId GetParameterId(Int32 iColumn) {
345 OdDbObjectId ret = new OdDbObjectId(TD_DbPINVOKE.OdDbBlockPropertiesTable_GetParameterId(swigCPtr, iColumn /*SIMPLETYPE*/), false);
347 return ret;
348 }
349
350 public OdResBuf GetValue(Int32 iColumn, Int32 iRow) {// OdResBufPtr
351 MemoryManager mMan = MemoryManager.GetMemoryManager();
352 MemoryTransaction mTrans = mMan.GetCurrentTransaction(); // MemoryTransaction #17
353 IntPtr ptr = TD_DbPINVOKE.OdDbBlockPropertiesTable_GetValue(swigCPtr, iColumn /*SIMPLETYPE*/, iRow /*SIMPLETYPE*/);
354
355 OdResBuf ret = null;
356 if (null != mTrans)
357 {
358 mTrans.AddObject((OdResBuf)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdResBuf),ptr, true));
359 ret = (OdResBuf)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdResBuf),ptr, false);
360 }
361 else
362 {
363 ret = (OdResBuf)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdResBuf),ptr, true);
364 }
365
367 return ret;
368}
369
375
380
386
391
392 public int idOfRow(int index) {
393 int ret = TD_DbPINVOKE.OdDbBlockPropertiesTable_idOfRow(swigCPtr, index);
395 return ret;
396 }
397
398 public int indexOfRow(int id) {
401 return ret;
402 }
403
404 public void insertColumn(OdDbObjectId param, String connection, int after) {
405 TD_DbPINVOKE.OdDbBlockPropertiesTable_insertColumn(swigCPtr, OdDbObjectId.getCPtr(param), connection, after);
407 }
408
413
418
423
428
433
438
439 public void moveRow(int from, int to) {
442 }
443
444 public static UInt32 bptNodeId(OdDbEvalGraph gr) {
445// test csout
446 /*SIMPLETYPE*/
449 return ret;
450 }
451
456
461
466
472
477
483
489
495
500
505
506 public void sortRows(int column, bool ascending) {
507 TD_DbPINVOKE.OdDbBlockPropertiesTable_sortRows(swigCPtr, column, ascending);
509 }
510
511 public OdDbParameterInterface parameterInterface(int column, OdDbBlockReference arg1) {// OdDbParameterInterfacePtr
512 MemoryManager mMan = MemoryManager.GetMemoryManager();
513 MemoryTransaction mTrans = mMan.GetCurrentTransaction(); // MemoryTransaction #17
515
516 OdDbParameterInterface ret = null;
517 if (null != mTrans)
518 {
519 mTrans.AddObject((OdDbParameterInterface)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdDbParameterInterface),ptr, true));
520 ret = (OdDbParameterInterface)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdDbParameterInterface),ptr, false);
521 }
522 else
523 {
524 ret = (OdDbParameterInterface)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdDbParameterInterface),ptr, true);
525 }
526
528 return ret;
529}
530
531 protected static string getRealClassName(IntPtr ptr) {
532 string ret = TD_DbPINVOKE.OdDbBlockPropertiesTable_getRealClassName(ptr /*SIMPLETYPE*/);
534 return ret;
535 }
536
541 public virtual string vb_name() { return this.name(); }
542
547 public string vb_format(int column) { return this.format(column); }
548
554
559 public uint vb_nodeId() { return this.nodeId(); }
560
566
567}
568
569}
virtual OdGiDrawable.DrawableType drawableType()
static HandleRef getCPtr(OdRxClass obj)
Definition OdRxClass.cs:25
OdRxObject(IntPtr cPtr, bool cMemoryOwn)
Definition OdRxObject.cs:21
static HandleRef getCPtr(OdRxObject obj)
Definition OdRxObject.cs:26
static HandleRef getCPtr(OdDbBPTAuditErrorArray obj)
virtual OdDbBlockElement.HistoryCompression historyCompression()
void insertColumn(OdDbObjectId param, String connection, int after)
override void erased(OdDbObject arg0, bool arg1)
override void addedToGraph(OdDbEvalGraph arg0)
void tableAudit(OdDbBPTAuditErrorArray arg0)
OdResult setEditable(int column, bool val)
void setCustomProperties(int column, OdDbObjectId id)
override OdResult dxfInFields(OdDbDxfFiler pFiler)
override void Dispose(bool disposing)
static new OdDbBlockPropertiesTable createObject()
OdResult setRemovable(int column, bool val)
OdResult getCellValue(int column, int row, ref OdResBuf rb)
static OdDbBlockPropertiesTable cast(OdRxObject pObj)
override void removedFromGraph(OdDbEvalGraph gr)
static HandleRef getCPtr(OdDbBlockPropertiesTable obj)
OdDbBlockPropertiesTable(IntPtr cPtr, bool cMemoryOwn)
OdResult setConstant(int column, bool val)
void setDefaultValue(int column, OdResBuf rb)
void sortRows(int column, bool ascending)
OdDbParameterInterface parameterInterface(int column, OdDbBlockReference arg1)
override OdRxObject queryX(OdRxClass protocolClass)
virtual Teigha.TD.OdDbBlockElement.HistoryCompression vb_historyCompression()
virtual Teigha.Core.OdGiDrawable.DrawableType vb_drawableType()
override OdResult dwgInFields(OdDbDwgFiler pFiler)
override void dwgOutFields(OdDbDwgFiler pFiler)
OdResult setCellValue(int column, int row, OdResBuf rb)
OdResBuf GetValue(Int32 iColumn, Int32 iRow)
void appendColumn(OdDbObjectId param, String connection)
static UInt32 bptNodeId(OdDbEvalGraph gr)
override void dxfOutFields(OdDbDxfFiler pFiler)
void setUnmatchedValue(int column, OdResBuf rb)
OdResult getCellValueString(int column, int row, ref string s)
static HandleRef getCPtr(OdDbBlockReference obj)
static HandleRef getCPtr(OdDbDwgFiler obj)
static HandleRef getCPtr(OdDbDxfFiler obj)
static HandleRef getCPtr(OdDbEvalGraph obj)
static HandleRef getCPtr(OdDbObject obj)
Definition OdDbObject.cs:26
static HandleRef getCPtr(OdDbObjectId obj)
static HandleRef getCPtr(OdResBuf obj)
Definition OdResBuf.cs:26
static global::System.Exception Retrieve()
static bool OdDbBlockPropertiesTable_runtimeParametersOnly(HandleRef jarg1)
static void OdDbBlockPropertiesTable_appendRow(HandleRef jarg1)
static bool OdDbBlockPropertiesTable_isAngular(HandleRef jarg1, int jarg2)
static IntPtr OdDbBlockPropertiesTable_unmatchedValue(HandleRef jarg1, int jarg2)
static void OdDbBlockPropertiesTable_erased(HandleRef jarg1, HandleRef jarg2, bool jarg3)
static int OdDbBlockPropertiesTable_getDefaultActiveRow(HandleRef jarg1)
static String OdDbBlockPropertiesTable_getColumnName(HandleRef jarg1, int jarg2)
static global::System.IntPtr OdDbBlockPropertiesTable_GetParameterId(HandleRef jarg1, Int32 jarg2)
static bool OdDbBlockPropertiesTable_editable(HandleRef jarg1, int jarg2)
static String OdDbBlockPropertiesTable_tableDescription(HandleRef jarg1)
static void OdDbBlockPropertiesTable_tableAudit(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int OdDbBlockPropertiesTable_indexOfRow(HandleRef jarg1, int jarg2)
static IntPtr OdDbBlockPropertiesTable_queryX(HandleRef jarg1, HandleRef jarg2)
static String OdDbBlockPropertiesTable_format(HandleRef jarg1, int jarg2)
static void OdDbBlockPropertiesTable_setRuntimeParametersOnly(HandleRef jarg1, bool jarg2)
static bool OdDbBlockPropertiesTable_removable(HandleRef jarg1, int jarg2)
static void OdDbBlockPropertiesTable_removeRow(HandleRef jarg1, int jarg2)
static void OdDbBlockPropertiesTable_addedToGraph(HandleRef jarg1, HandleRef jarg2)
static void OdDbBlockPropertiesTable_dwgOutFields(HandleRef jarg1, HandleRef jarg2)
static void OdDbBlockPropertiesTable_setMustMatch(HandleRef jarg1, bool jarg2)
static String OdDbBlockPropertiesTable_GetName(HandleRef jarg1, Int32 jarg2)
static int OdDbBlockPropertiesTable_idOfRow(HandleRef jarg1, int jarg2)
static bool OdDbBlockPropertiesTable_isAttribute(HandleRef jarg1, int jarg2)
static int OdDbBlockPropertiesTable_setEditable(HandleRef jarg1, int jarg2, bool jarg3)
static void OdDbBlockPropertiesTable_removeColumn(HandleRef jarg1, int jarg2)
static int OdDbBlockPropertiesTable_dxfInFields(HandleRef jarg1, HandleRef jarg2)
static int OdDbBlockPropertiesTable_setCellValue(HandleRef jarg1, int jarg2, int jarg3, HandleRef jarg4)
static void OdDbBlockPropertiesTable_setUnmatchedValue(HandleRef jarg1, int jarg2, HandleRef jarg3)
static void OdDbBlockPropertiesTable_setCustomProperties(HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int OdDbBlockPropertiesTable_getCellValue(HandleRef jarg1, int jarg2, int jarg3, ref IntPtr jarg4)
static void OdDbBlockPropertiesTable_setDefaultActiveRow(HandleRef jarg1, int jarg2)
static IntPtr OdDbBlockPropertiesTable_parameterInterface(HandleRef jarg1, int jarg2, HandleRef jarg3)
static UInt32 OdDbBlockPropertiesTable_bptNodeId(HandleRef jarg1)
static void OdDbBlockPropertiesTable_setTableDescription(HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2)
static void OdDbBlockPropertiesTable_sortRows(HandleRef jarg1, int jarg2, bool jarg3)
static IntPtr OdDbBlockPropertiesTable_cast(HandleRef jarg1)
static bool OdDbBlockPropertiesTable_columnValuesAreUnique(HandleRef jarg1, int jarg2)
static void OdDbBlockPropertiesTable_setTableName(HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2)
static bool OdDbBlockPropertiesTable_mustMatch(HandleRef jarg1)
static int OdDbBlockPropertiesTable_numberOfRows(HandleRef jarg1)
static void OdDbBlockPropertiesTable_setFormat(HandleRef jarg1, int jarg2, [MarshalAs(UnmanagedType.LPWStr)]String jarg3)
static String OdDbBlockPropertiesTable_tableName(HandleRef jarg1)
static void OdDbBlockPropertiesTable_moveColumn(HandleRef jarg1, int jarg2, int jarg3)
static void OdDbBlockPropertiesTable_insertRow(HandleRef jarg1, int jarg2)
static IntPtr OdDbBlockPropertiesTable_defaultValue(HandleRef jarg1, int jarg2)
static int OdDbBlockPropertiesTable_getCellValueString(HandleRef jarg1, int jarg2, int jarg3, ref IntPtr jarg4)
static int OdDbBlockPropertiesTable_numberOfColumns(HandleRef jarg1)
static IntPtr OdDbBlockPropertiesTable_GetValue(HandleRef jarg1, Int32 jarg2, Int32 jarg3)
static Int32 OdDbBlockPropertiesTable_GetColumnCount(HandleRef jarg1)
static string OdDbBlockPropertiesTable_getRealClassName(IntPtr jarg1)
static void OdDbBlockPropertiesTable_setDefaultValue(HandleRef jarg1, int jarg2, HandleRef jarg3)
static void OdDbBlockPropertiesTable_removedFromGraph(HandleRef jarg1, HandleRef jarg2)
static void OdDbBlockPropertiesTable_moveRow(HandleRef jarg1, int jarg2, int jarg3)
static int OdDbBlockPropertiesTable_setConstant(HandleRef jarg1, int jarg2, bool jarg3)
static bool OdDbBlockPropertiesTable_constant(HandleRef jarg1, int jarg2)
static void OdDbBlockPropertiesTable_insertColumn(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, [MarshalAs(UnmanagedType.LPWStr)]String jarg3, int jarg4)
static void OdDbBlockPropertiesTable_appendColumn(HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, [MarshalAs(UnmanagedType.LPWStr)]String jarg3)
static int OdDbBlockPropertiesTable_setRemovable(HandleRef jarg1, int jarg2, bool jarg3)
static Int32 OdDbBlockPropertiesTable_GetRowCount(HandleRef jarg1)
static bool OdDbBlockPropertiesTable_disabledInDrawingEditor(HandleRef jarg1)
static IntPtr OdDbBlockPropertiesTable_GetRowIndices(HandleRef jarg1)
static int OdDbBlockPropertiesTable_dwgInFields(HandleRef jarg1, HandleRef jarg2)
static global::System.IntPtr OdDbBlockPropertiesTable_customProperties(HandleRef jarg1, int jarg2)
static void OdDbBlockPropertiesTable_dxfOutFields(HandleRef jarg1, HandleRef jarg2)
static IntPtr OdDbBlockPropertiesTable_createObject()
static void delete_OdDbBlockPropertiesTable(HandleRef jarg1)
static IntPtr OdDbBlockPropertiesTable_isA(HandleRef jarg1)
static IntPtr OdDbBlockPropertiesTable_desc()