Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Property Let()VBAでは、コンストラクターで変数を設定するだけでなく、クラス コンストラクター内からa を呼び出したいと考えています。とにかくこれを行うことはありますか?
Property Let()
Me私があなたの質問を誤解していない限り、あなたはキーワードを探しています。
Me
Option Explicit Dim l_ As Long Private Sub Class_Initialize() Me.l = 5 End Sub Public Property Let l(newl As Long) l_ = newl End Property