Method | Description | |
---|---|---|
CreateObjectFromFileDefinition ( string fileName ) : object |
Loads the XML definition from fileName and sets creates the control.
|
|
CreateObjectFromXmlDefinition ( string xmlContent ) : object |
Loads the XML definition from a xml definition and sets creates the control.
|
|
LoadObjectFromFileDefinition ( object customizationObject, string fileName ) : void |
Loads the XML definition from fileName and sets creates the control.
|
|
LoadObjectFromStream ( object customizationObject, Stream stream ) : void | ||
LoadObjectFromXmlDefinition ( string xmlContent ) : void |
Loads the XML definition from a xml definition and sets creates the control.
|
|
LoadObjectFromXmlDocument ( object customizationObject, |
||
XmlLoader ( ) : System |
Creates a new instance of XmlLoader.
|
Method | Description | |
---|---|---|
SetAttributes ( object o, |
Sets all properties in the object
|
|
SetUpObject ( object currentObject, |
Sets the properties of an object
|
|
SetValue ( object o, string propertyName, string val ) : void |
Sets a property called propertyName in object
|
public CreateObjectFromFileDefinition ( string fileName ) : object | ||
fileName | string | /// The filename of the XML definition file to load. /// |
return | object |
public CreateObjectFromXmlDefinition ( string xmlContent ) : object | ||
xmlContent | string | |
return | object |
public LoadObjectFromFileDefinition ( object customizationObject, string fileName ) : void | ||
customizationObject | object | /// The object to customize. (should be a control or form) /// This is object, because this class may be extended later. /// |
fileName | string | /// The filename of the XML definition file to load. /// |
return | void |
public LoadObjectFromStream ( object customizationObject, Stream stream ) : void | ||
customizationObject | object | |
stream | Stream | |
return | void |
public LoadObjectFromXmlDefinition ( string xmlContent ) : void | ||
xmlContent | string | |
return | void |
public LoadObjectFromXmlDocument ( object customizationObject, |
||
customizationObject | object | |
doc | ||
return | void |