this

Refers to the current object instance within a Method

Keywords

Parameters & Returns

Parameters

This function takes no parameters.

Returns

Object

Quick Summary

Refers to the current object instance within a Method

Technical Exegesis...

Refers to the current object instance within a Method. Used inside Type methods to access the current object's fields and methods. Syntax is this\fieldName or this\methodName(). Allows methods to work with the specific instance they're called on. Essential for accessing and modifying an object's own data within its methods.

Example

Example.bam
; No example implemented yet