获取列的名称。 支持的平台:仅窗口 返回值(RetVal)类型:字符串 列的名称。 言论没有额外的评论。 例子工 务 局: Sub Example_ColumnName()
' This example adds a table in model space and sets and gets a column name
Dim MyModelSpace As AcadModelSpace
Set MyModelSpace = ThisDrawing.ModelSpace
Dim pt(2) As Double
Dim MyTable As AcadTable
Dim cName As String
Set MyTable = MyModelSpace.AddTable(pt, 5, 5, 10, 30)
Call MyTable.SetColumnName(2, "Test Name")
MsgBox "The column name is: " & vbCrLf & _
MyTable.GetColumnName(2)
ZoomExtents
End Sub
Visual LISP: (vl-load-com)
(defun c:Example_ColumnName()
;; This example adds a table in model space and sets and gets a column name
(setq acadObj (vlax-get-acad-object))
(setq doc (vla-get-ActiveDocument acadObj))
(setq pt (vlax-3d-point 0 0 0))
(setq modelSpace (vla-get-ModelSpace doc))
(setq MyTable (vla-AddTable modelSpace pt 5 5 10 30))
(vla-SetColumnName MyTable 2 "Test Name")
(alert (strcat "The column name is: \n"
(vla-GetColumnName MyTable 2)))
(vla-ZoomExtents acadObj)
)
|
|Archiver|CAD开发者社区
( 苏ICP备2022047690号-1 苏公网安备32011402011833)
GMT+8, 2025-10-29 08:47
Powered by Discuz! X3.4
Copyright © 2001-2021, Tencent Cloud.