SetCellState メソッド(ActiveX)

セルの状態を設定します。

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

構文と要素

VBA:

object.SetCellState nRow, nCol, nLock
object

タイプ: Table

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

nRow

アクセス: 入力のみ

タイプ: 長整数型

行の値。

nCol

アクセス: 入力のみ

タイプ: 長整数型

列の値。

nLock

アクセス: 入力のみ

タイプ: AcCellState 列挙型

セルの新しい状態。

  • acCellStateContentLocked
  • acCellStateContentModified
  • acCellStateContentReadOnly
  • acCellStateFormatLocked
  • acCellStateFormatModified
  • acCellStateFormatReadOnly
  • acCellStateLinked
  • acCellStateNone

戻り値(RetVal)

戻り値はありません。

注意

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

VBA:

Sub Example_CellManipulation()
    ' 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.SetCellDataType(2, 2, acLong, acUnitDistance)
    Call MyTable.SetCellFormat(1, 3, "testFormat")
    Call MyTable.SetCellState(4, 3, acCellStateContentLocked)
    Call MyTable.SetCellValue(1, 4, 5)
    
    MsgBox MyTable.GetCellValue(1, 4) & " is the test cell's value "

    ZoomExtents
    
End Sub

Visual LISP:

(vl-load-com)
(defun c:Example_CellManipulation()
    ;; 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-SetCellDataType MyTable 2 2 acLong acUnitDistance)
    (vla-SetCellFormat MyTable 1 3 "testFormat")
    (vla-SetCellState MyTable 4 3 acCellStateContentLocked)
    (vla-SetCellValue MyTable 1 4 5)
    
    (alert (strcat (itoa (vlax-variant-value (vla-GetCellValue MyTable 1 4))) " is the test cell's value."))

    (vla-ZoomExtents acadObj)
)