Changes default value of the property of the type. You can change value only in run-time mode (then Active == false)

Namespace:  Greatis.FormDesigner
Assembly:  Greatis.FormDesigner (in Greatis.FormDesigner.dll)

Syntax

Visual Basic (Declaration)
Public Sub ChangeDefaultValue ( _
	componentType As Type, _
	propName As String, _
	value As Object _
)
C#
public void ChangeDefaultValue(
	Type componentType,
	string propName,
	Object value
)
Visual C++
public:
void ChangeDefaultValue(
	Type^ componentType, 
	String^ propName, 
	Object^ value
)
JavaScript
function changeDefaultValue(componentType, propName, value);

Parameters

componentType
Type: System..::.Type
changed type
propName
Type: System..::.String
changed property name
value
Type: System..::.Object
new default value

See Also