3. Option Explicit
Private Type Hogehoge
name as String
id as String
vba_children as Boolean
End Type
Private me as Hogehoge
Private Sub Class_Initialize()
me.name = “Kei Sawada”
me.id = “remore”
me.vba_children = true
End Sub
Private Property Get name() as String
name = me.name
End Property
Private Property Let name( ByVal entry as String)
me.name = entry
End Property
11. Limitations
1. Currently Google Apps Script does not allow connection to internal (behind-the-
firewall) corporate databases, which is key to building business apps. Similarly, lack of
other connectivity, such as LDAP connectivity, limits the level to which GAS can be
used in the enterprise.
⇒ LDAP
2. There is no way to share scripts i.e. a new instance has be created for each use.[5] This
creates overhead when it is time to update a script, since each instance has to be update
manually.
⇒ ※
3. UI Widgets in Google Apps Script lack support for displaying HTML formatted
content.[6] This severely limits the formatting of text displayed in a Google Apps
Script app.
⇒UI Widgets HTML
(※ Google Sites )