GetColumnName メソッド(ActiveX)

列の名前を取得します。

サポートされているプラットフォーム: Windows のみ

構文と要素

VBA:

RetVal = object.GetColumnName(nIndex)
object

タイプ: Table

このメソッドが適用されるオブジェクト。

nIndex

アクセス: 入力のみ

タイプ: 長整数型

列のインデックス。

戻り値(RetVal)

タイプ: 文字列

列の名前。

注意

追加の注意はありません。

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)
)