<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Qlikview Object Model, Help Text / Comment fields in Properties in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Qlikview-Object-Model-Help-Text-Comment-fields-in-Properties/m-p/574070#M1098165</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Figured this out a while back.... code required for say expression comments is as follows:&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;boxprop.expressions.item(iy).item(0).data.expressiondata.comment&lt;/P&gt;&lt;P&gt;boxprop.expressions.item(iy).item(0).data.expressionvisual.label.v &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you go through the APIGuide.qvw you eventually get there.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 13 Jun 2014 15:49:51 GMT</pubDate>
    <dc:creator>hoodhill</dc:creator>
    <dc:date>2014-06-13T15:49:51Z</dc:date>
    <item>
      <title>Qlikview Object Model, Help Text / Comment fields in Properties</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-Object-Model-Help-Text-Comment-fields-in-Properties/m-p/574064#M1098159</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does anyone know whether its possible to get/set the values of the 'Help Text' / 'Comment' fields by using the Qlikview API; re. I can pick up Captions, Cell information etc, but there seems to be no reference to the fields I want.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Background. I want to populate the 'Help Text' / 'Comment' fields of a BI implementation and I thought it might be easier to write a script to do this as opposed to manually go through all the objects within the presentation and make the change. Would also be easier if I wanted to do a mass change of the details at some future point too.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BTW. If not possible to use the API is their any other way to achieve the same thing?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tim&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Apr 2014 11:25:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-Object-Model-Help-Text-Comment-fields-in-Properties/m-p/574064#M1098159</guid>
      <dc:creator>hoodhill</dc:creator>
      <dc:date>2014-04-29T11:25:25Z</dc:date>
    </item>
    <item>
      <title>Re: Qlikview Object Model, Help Text / Comment fields in Properties</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-Object-Model-Help-Text-Comment-fields-in-Properties/m-p/574065#M1098160</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tim,&lt;/P&gt;&lt;P&gt;Here are the examples from API Guide:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rem ** Set pop-up help text for list box **&lt;BR /&gt;set LB = ActiveDocument.GetSheetObject("LB06")&lt;BR /&gt;set boxprop=LB.GetProperties&lt;BR /&gt;boxprop.&lt;STRONG&gt;Layout.Frame.HelpText.v&lt;/STRONG&gt; = "Bla bla bla"&lt;BR /&gt;LB.SetProperties boxprop&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rem ** Set pop-up help text for a chart **&lt;BR /&gt;set g = ActiveDocument.GetSheetObject("CH01")&lt;BR /&gt;set gp = g.GetProperties&lt;BR /&gt;gp.&lt;STRONG&gt;GraphLayout.Frame.HelpText.v&lt;/STRONG&gt; = "Bla bla bla"&lt;BR /&gt;g.SetProperties gp&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Apr 2014 12:18:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-Object-Model-Help-Text-Comment-fields-in-Properties/m-p/574065#M1098160</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-04-29T12:18:57Z</dc:date>
    </item>
    <item>
      <title>Re: Qlikview Object Model, Help Text / Comment fields in Properties</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-Object-Model-Help-Text-Comment-fields-in-Properties/m-p/574066#M1098161</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Michael,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks – works a treat with the HelpText.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In terms of the ‘Comment’ field(s), how do I get to those; re. looking to get a list of comment(s) for the cells in a chart.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tim&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Apr 2014 13:14:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-Object-Model-Help-Text-Comment-fields-in-Properties/m-p/574066#M1098161</guid>
      <dc:creator>hoodhill</dc:creator>
      <dc:date>2014-04-29T13:14:40Z</dc:date>
    </item>
    <item>
      <title>Re: Qlikview Object Model, Help Text / Comment fields in Properties</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-Object-Model-Help-Text-Comment-fields-in-Properties/m-p/574067#M1098162</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I found how to read field comments, but not how to change it.&lt;/P&gt;&lt;P&gt;Somewhat confused about "list of comment(s) for the cells in a chart".&amp;nbsp; Doesn't look like "field comments" (?)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Apr 2014 13:51:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-Object-Model-Help-Text-Comment-fields-in-Properties/m-p/574067#M1098162</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-04-29T13:51:26Z</dc:date>
    </item>
    <item>
      <title>Re: Qlikview Object Model, Help Text / Comment fields in Properties</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-Object-Model-Help-Text-Comment-fields-in-Properties/m-p/574068#M1098163</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Michael,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;From the Chart properties, the ‘Comment’ field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Assuming it’s possible, what I’d like back is the value ‘Suppliers-Comment’.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tim&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Apr 2014 13:58:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-Object-Model-Help-Text-Comment-fields-in-Properties/m-p/574068#M1098163</guid>
      <dc:creator>hoodhill</dc:creator>
      <dc:date>2014-04-29T13:58:30Z</dc:date>
    </item>
    <item>
      <title>Re: Qlikview Object Model, Help Text / Comment fields in Properties</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-Object-Model-Help-Text-Comment-fields-in-Properties/m-p/574069#M1098164</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I see...&amp;nbsp; No, I don't know if there is API for this. &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/confused.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Apr 2014 15:48:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-Object-Model-Help-Text-Comment-fields-in-Properties/m-p/574069#M1098164</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-04-29T15:48:02Z</dc:date>
    </item>
    <item>
      <title>Re: Qlikview Object Model, Help Text / Comment fields in Properties</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-Object-Model-Help-Text-Comment-fields-in-Properties/m-p/574070#M1098165</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Figured this out a while back.... code required for say expression comments is as follows:&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;boxprop.expressions.item(iy).item(0).data.expressiondata.comment&lt;/P&gt;&lt;P&gt;boxprop.expressions.item(iy).item(0).data.expressionvisual.label.v &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you go through the APIGuide.qvw you eventually get there.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Jun 2014 15:49:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-Object-Model-Help-Text-Comment-fields-in-Properties/m-p/574070#M1098165</guid>
      <dc:creator>hoodhill</dc:creator>
      <dc:date>2014-06-13T15:49:51Z</dc:date>
    </item>
  </channel>
</rss>

