Extending Stimulsoft Text control

Stimulsoft Reports.Silverlight discussion
Locked
Lex Lavnikov
Posts: 34
Joined: Tue Nov 08, 2011 9:34 am
Location: Frankfurt

Extending Stimulsoft Text control

Post by Lex Lavnikov »

Hello there,

I'd like to access indexed properties of my business object (MyObject.Properties["Blabla"]) inside of my report.

As I've found, it is not possible to use user-defined functions (works only on WinForms version).

So basically I have following choices:
1) Write Stimulsoft plugin service to extend built-in functions. No idea whether it works on Silverlight version.
2) Extend Text control to override data extraction logic.
3) Go to Telerik (reinvest a month of evaluation).

So, the only considerable choice leaves the question how to extent Text control and how to replace it with newer one in Stimulsoft Designer.
Everything said before has only Silverlight platform in mind.

Thank you for you help in advance,
Lex
Alex K.
Posts: 6488
Joined: Thu Jul 29, 2010 2:37 am

Extending Stimulsoft Text control

Post by Alex K. »

Hello,

Can you please describe your task in more details?

Thank you.
Lex Lavnikov
Posts: 34
Joined: Tue Nov 08, 2011 9:34 am
Location: Frankfurt

Extending Stimulsoft Text control

Post by Lex Lavnikov »

I have a business object (POCO) like this:

public class MyBusinessObject
{
public string Name { get; set; }
public string this[string propName]
{
get { some implementation goes here... }
set { some implementation goes here... }
}
}

So what we need is a possibility to access indexed properties on MyBusinessObject.
Something like MyBusinessObject["MyParam"]

Alex K.
Posts: 6488
Joined: Thu Jul 29, 2010 2:37 am

Extending Stimulsoft Text control

Post by Alex K. »

Hello,

Thank you for your suggestions.
We have added your request to our to-do list, but I cannot say when it will be available.

Thank you.
Locked