When I create a variable in the report, I can only set the default .net types and not e.g. my own enum.
It is possible to define a variable like this in the designer:
private MyEnum MyVar;
where MyEnum is:
pulic enum MyEnum
{
One,
Two,
Three
}
Thanks a lot!
Custom types
Custom types
You can add your types to default types with following code:
Thanks.
Code: Select all
StiTypeWrapper.SimpleTypes.Add(typeof(mytype))