NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

RedirectValueEditor.GetValueFromSubPropertyValues

Attempts to compose a value of this editor's type from the given array of values. If it is successful, it returns the composed value, otherwise it returns null. This array of values is usually a modified version of the values contained in the sub properties returned by getSubProperties(). This method will only be called if the StyleProperties style is present.

[Visual Basic]
Overrides Public Function GetValueFromSubPropertyValues( _
   ByVal values() As Object _
) As Object
[C#]
public override object GetValueFromSubPropertyValues(
   object[] values
);
[C++]
public: override Object* GetValueFromSubPropertyValues(
   Object* values[]
);
[JScript]
public override function GetValueFromSubPropertyValues(
   values : Object[]
) : Object;

Parameters

values
array of values.

Return Value

value that results from the composition of the inputs. (null if a composition wasn't possible.)

See Also

RedirectValueEditor Class | RedirectValueEditor Members | System.WinForms.ComponentModel Namespace