or
<
Telerik.Reporting
>
<
Extensions
>
<
Render
>
<
Extension
name
=
"PDF"
visible
=
"true"
>
<
Parameters
>
<
Parameter
name
=
"FontEmbedding"
value
=
"Subset"
/>
</
Parameters
>
</
Extension
>
<
Extension
name
=
"CSV"
visible
=
"false"
/>
<!--<
Extension
name
=
"IMAGE"
visible
=
"false"
>
</
Extension
>-->
<
Extension
name
=
"RTF"
visible
=
"false"
>
</
Extension
>
<
Extension
name
=
"MHTML"
visible
=
"false"
>
</
Extension
>
<
Extension
name
=
"XLS"
visible
=
"false"
>
</
Extension
>
<
Extension
name
=
"XPS"
visible
=
"false"
>
</
Extension
>
</
Render
>
</
Extensions
>
</
Telerik.Reporting
>
public interface ITopInterface
{
string A { get; }
}
public interface IBottomInterface: ITopInterface
{
string B { get; }
bool C { get; }
}
public class BaseClass : ITopInterface
{
public string A { get { return "test"; } }
}
public class newobject : BaseClass, IBottomInterface
{
public string B { get { return "test"; } }
public bool C { get { return true; } }
}
textBoxTable = new Telerik.Reporting.HtmlTextBox();
textBoxTable.Style.BorderColor.Default = Color.Black;
textBoxTable.Style.BorderStyle.Default = BorderType.Solid;
textBoxTable.Value = "=Fields." + dc.ColumnName;