Gets an external object based on an identifier.

Namespace:  C1.Silverlight.Binding
Assembly:  C1.Silverlight.Binding.5 (in C1.Silverlight.Binding.5.dll)

Syntax

C#
public virtual Object GetExternalObject(
	string identifier
)
Visual Basic
Public Overridable Function GetExternalObject ( _
	identifier As String _
) As Object

Parameters

identifier
Type: System..::..String

Remarks

This method is useful when the engine needs to create objects dynamically. For example, a spreadsheet calc engine would use this method to dynamically create cell range objects based on identifiers that cannot be enumerated at design time (such as "AB12", "A1:AB12", etc.)

See Also