Why do we need to use property Let, Get and Set in a VBA class when we can simply pass and return our arguments using subroutines or f
Let
Get
Set
Moreover, Let/Get combination or Set/Get combination sets a discipline for type of argument (for Let/Set) and return value (Get) so that functions can be used on left hand side of an assignment statement. Makes coding crisp!