Articles in the .net Category
.net »
Object property can be used to retrieve internal properties and activate internal methods of any .NET Windows Forms object in your application.
For example, you can set the focus to a particular button and change its caption using statements similar to the following:
Set theButton = SwfWindow(“frmWin”).SwfButton(“OK”).Object
theButton.SetFocus
theButton.Caption = “Yes”
The Object property is also useful for verifying the value of properties that are not available using a standard checkpoint.
When you use the Object property to retrieve arrays of structures, the Object property returns the …
