Sets the alias value of the local alias item that has the specified alias name (if there is one) for the specified visual object.

Namespace: Ico.Gwx
Assembly: GwxRuntimeCore (in GwxRuntimeCore.dll) Version: 10.97.212.0 (10.97.212.00)

Syntax

C#
public bool SetAliasValue(
	string visualObjectName,
	string aliasName,
	string aliasValue
)
Visual Basic
Public Function SetAliasValue ( _
	visualObjectName As String, _
	aliasName As String, _
	aliasValue As String _
) As Boolean
JScript
public function SetAliasValue(
	visualObjectName : String, 
	aliasName : String, 
	aliasValue : String
) : boolean

Parameters

visualObjectName
Type: System..::..String
The Name of a 2D or 3D visual object. If no name is specified, this method will set local aliases for the entire display. If no visual object is found with the specified name, this method does nothing.
aliasName
Type: System..::..String
The name of the alias item.
aliasValue
Type: System..::..String
The alias value to set.

Return Value

False if no visual object is found with the specified name, otherwise returns true.

See Also