Please ensure Javascript is enabled for purposes of website accessibility
Powered by Zoomin Software. For more details please contactZoomin

AVEVA™ Plant SCADA

IProcessAnalyst​.ObjectView [Property][Get]

  • Last UpdatedJul 18, 2023
  • 1 minute read

Gets a reference to the ObjectView object. With this object you can manipulate the look of the ObjectView.

Defined As

  • [VBA] Object ObjectView

  • [Cicode] OBJECT ObjectView

  • [C++] IObjectView* ObjectView

Execution Result

If the property get succeeds the return value will be Success. If the return variable is bad then the return value will be InvalidArgument.

Calling Syntax

Assumes you have a page called "myPage" and the Process Analyst has been named "AN35".

[VBA]

Sub Example()
Dim objectView As Object
`Retrieve the objectview
Set objectView = myPage_AN35.ObjectView
End Sub

[Cicode]

FUNCTION Example()
OBJECT hProcessAnalyst = ObjectByName("AN35");
OBJECT objectView;
// Retrieve the objectview
objectView = _ObjectGetProperty(hProcessAnalyst, "ObjectView");
END

In This Topic
TitleResults for “How to create a CRG?”Also Available in