vb2Py - Set

Contents of this page:

General

VB uses the Set statement to assign objects to variables. In Python there is no distinction between assignments so Set statements are simply translated to an equivalent assigment.

Default Conversion

VBPython

Set a = MyObj
Set MyObj.Parent = Me.Parent




a = MyObj
MyObj.Parent = Me.Parent

List of Options

There are no options specific to the Set statement.