Читать книгу Excel 2019 Power Programming with VBA - Michael Alexander, Dick Kusleika - Страница 177

User-Defined Data Types

Оглавление

VBA lets you create custom, or user-defined, data types. A user-defined data type can ease your work with some types of data. For example, if your application deals with customer information, you may want to create a user-defined data type named CustomerInfo.

Type CustomerInfo Company As String Contact As String RegionCode As Long Sales As Double End Type

Excel 2019 Power Programming with VBA

Подняться наверх