EXCEL VBA에서 개체Object의 종류 엑셀 개체 : 시트 -> 추가/삭제 불가VBA 개체 : 모듈, 폼, 클래스 모듈 -> 추가/삭제 가능 엑셀의 모든 개체는 다른 개체와 연결되며, 이런 종속 관계를 설명한 것이 개체 모델이다. 개체 구성원을 이용하는 방법 개체.구성원개체.속성 = 새 값'개체의 속성 값변경대상 = 개체.속성'개체의 속성 값확인 MsgBox Worksheets(1).Name 'show me the message box the first Worksheets(index=1)'s name is written on.Range("A1").Value = 100 ' put the value 100 into the Range("A1") Entity name should be written wit..