Author Topic: Extract the Annex tab sections from the WDE application  (Read 1711 times)

Offline shahzeb

  • Newbie
  • *
  • Posts: 11
  • Karma: 0
Extract the Annex tab sections from the WDE application
« on: September 09, 2019, 07:28:01 AM »
Hello Guys,

I want some help. Trying to extract the sections from the Annex tab from the WDE application, and not knowing on how to get my hands on that data at all.
I know i can get the Options from the following code (below), but how to extract the sections in Annex tab then ? Any idea 

IConfigurationService configService = container.Resolve<IConfigurationService>();
KeyValueCollection options =  configService.MyApplication.Options;

Offline cavagnaro

  • Administrator
  • Hero Member
  • *****
  • Posts: 7639
  • Karma: 56330
Re: Extract the Annex tab sections from the WDE application
« Reply #1 on: September 09, 2019, 01:25:42 PM »
What exactly do you mean by extract? Extract what? Remove?

Enviado de meu SM-G9650 usando o Tapatalk


Offline hsujdik

  • Hero Member
  • *****
  • Posts: 541
  • Karma: 30
Re: Extract the Annex tab sections from the WDE application
« Reply #2 on: September 09, 2019, 02:55:37 PM »
KeyValueCollection annex = configurationService.MyApplication.FlexibleProperties;

Offline PeteHoyle

  • Full Member
  • ***
  • Posts: 126
  • Karma: 13
Re: Extract the Annex tab sections from the WDE application
« Reply #3 on: September 09, 2019, 07:27:54 PM »

To get the annex values of your application I thought it was:

[code]this.configService = configService;
KeyValueCollection kvc = configService.MyApplication.UserProperties;[/code]

Offline hsujdik

  • Hero Member
  • *****
  • Posts: 541
  • Karma: 30
Re: Extract the Annex tab sections from the WDE application
« Reply #4 on: September 09, 2019, 07:38:05 PM »
[quote author=PeteHoyle link=topic=11431.msg52101#msg52101 date=1568057274]

To get the annex values of your application I thought it was:

[code]this.configService = configService;
KeyValueCollection kvc = configService.MyApplication.UserProperties;[/code]
[/quote]

Oops... yes. That is the right one