| RpObjectOpenView Method (String, MvValue, Boolean) |
Requests the server to open a view on the server object
associated with this representation object.
Namespace: RW.Server.ComponentAssembly: RW.Server.Component (in RW.Server.Component.dll) Version: 6.3.0.0 (0.8.0.0)
Syntax public virtual void OpenView(
string viewName,
MvValue[] argv = null,
bool force = false
)
Public Overridable Sub OpenView (
viewName As String,
Optional argv As MvValue() = Nothing,
Optional force As Boolean = false
)
public:
virtual void OpenView(
String^ viewName,
array<MvValue^>^ argv = nullptr,
bool force = false
)
Parameters
- viewName
- Type: SystemString
The name of the view to be opened. - argv (Optional)
- Type: RW.Server.ComponentMvValue
Parameters sent to the constructor of the view. - force (Optional)
- Type: SystemBoolean
Only considered if the same view has already been opened by
the component. If true, a new view is opened,
otherwise SetSelection is
called on the representation associated with the existing
view.
See Also