Retrieves a set of properties for the SizeD type using the specified context and attributes.

Namespace:  EGIS.ShapeFileLib
Assembly:  EGIS.ShapeFileLib (in EGIS.ShapeFileLib.dll)

Syntax

Visual Basic
Public Overrides Function GetProperties ( _
	context As ITypeDescriptorContext, _
	value As Object, _
	attributes As Attribute() _
) As PropertyDescriptorCollection
C#
public override PropertyDescriptorCollection GetProperties(
	ITypeDescriptorContext context,
	Object value,
	Attribute[] attributes
)
Visual C++
public:
virtual PropertyDescriptorCollection^ GetProperties(
	ITypeDescriptorContext^ context, 
	Object^ value, 
	array<Attribute^>^ attributes
) override
JavaScript
function getProperties(context, value, attributes);

Parameters

context
Type: System.ComponentModel..::..ITypeDescriptorContext
An ITypeDescriptorContext through which additional context can be supplied.
value
Type: System..::..Object
The Object to return properties for.
attributes
Type: array<System..::..Attribute>[]()[][]
An array of Attribute objects that describe the properties.

Return Value

A PropertyDescriptorCollection containing the properties.

See Also