列に名前を設定します。
サポートされているプラットフォーム: Windows のみ
VBA:
object.SetColumnName nIndex, name
タイプ: Table
このメソッドが適用されるオブジェクト。
アクセス: 入力のみ
タイプ: 長整数型
列のインデックス。
アクセス: 入力のみ
タイプ: 文字列
新しい名前。
戻り値はありません。
追加の注意はありません。
VBA:
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) )