views:

5

answers:

0

Hi,
here is my problem.Reading the definition of RDLC files (http://schemas.microsoft.com/sqlserver/reporting/2005/01/reportdefinition/ReportDefinition.xsd) i saw TextboxType has a XMLNode of type CustomPropertiesType which contains sequence of CustomPropertyType. The definition of CustomPropertyType is

<xsd:complexType name="CustomPropertiesType">
<xsd:sequence>
<xsd:element name="CustomProperty" type="CustomPropertyType" maxOccurs="unbounded"/>
</xsd:sequence>
<xsd:anyAttribute namespace="##other" processContents="skip"/>
</xsd:complexType>

what i want is to be able to add customProparties by hand(not using desinger but by code). I also want to add atribute Type so i can distinct different CustomPropertyTypies. The problem is that when i add attribute and save the RDLC using designer the designer removers this attribute.
Best Regards,
Iordant