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!

OldArrayEditor.GetSubProperties

Returns the logical sub properties of a given value. These sub properties represent values that together compose the given value. Each of these values can be edited by the user, and GetValueFromSubPropertyValues() will be called to see if a new set of values can compose a new value of this type. This method will only be called if the StyleProperties style is present.

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

Parameters

value
Value to be decomposed

Return Value

subproperties The decomposition of the value into editable values.

See Also

OldArrayEditor Class | OldArrayEditor Members | System.ComponentModel.Design Namespace