AddItem Method

Inserts a new item into the beginning of an RSS feed.

Syntax

public fun addItem(title: String?, description: String?, link: String?)

Remarks

This method assumes that the items are new and more important than existing items and thus adds the item to the beginning of the current item list. This method requires the three standard fields Title, Description, and Link to be specified.

Example (Add a New Item)

RSSControl.AddItem("New Item Title", "Item Description", "http://www.itemsource.com")
RSSControl.WriteFile(filename)
Example (Add a New Item using the Items Collection)
RSSControl.Items.Add(New RSSItem("New Item Title", "Item Description"))
RSSControl.Items[0].Link = "http://www.itemsource.com"
RSSControl.WriteFile(filename)

Copyright (c) 2021 /n software inc. - All rights reserved.
IPWorks 2020 Kotlin Edition - Version 20.0 [Build 7941]