Garmin Forums
Site
Search
User
Site
Search
User
Apps & Software
Outdoor Recreation
Sports & Fitness
Pilots
Developer
Beta Program
German Forum
More
Cancel
Developer
More
Connect IQ
Connect IQ App Development Discussion
Equivalent of "this" keyword in monkey C
News & Announcements
Forums
Bug Reports
Wiki
Tags
More
Cancel
Replies
1 reply
Subscribers
16 subscribers
Views
432 views
Users
0 members are here
Options
Share
More
Cancel
Related
Equivalent of "this" keyword in monkey C
Former Member
over 9 years ago
What is the equivalent of the "this" keyword in monkey C? I want to do something like this:
class MyApp extends App.AppBase {
var view;
function initialize() {
view = new MyAppView(this);
}
}
Thanks
Jesus
Top Replies
PedlarStudios
over 9 years ago
+1
self
is what you're looking for.
All Replies
PedlarStudios
over 9 years ago
self
is what you're looking for.
Cancel
Up
+1
Down
Reply
Cancel