ASP.NET Show Documentation - Methods

Methods: Add, Remove

<%@ Register TagPrefix="obshow" Namespace="OboutInc.Show" Assembly="obout_Show_Net" %>

Methods - Add

Name Description
methodAddPanel Add a new panel to the Show's panels collection.
Returns the panel index in the collection.

int AddPanel(Panel panel)

methodAddPanelAt Add a new panel to the Show's panels collection, at the specified position.

void AddPanelAt(int index, Panel panel)

methodAddImagePanel Add a new image panel to the Show's panels collection.
Returns the panel index in the collection.

int AddImagePanel(string imagePath, bool selected)

  • imagePath - The path to the image to be loaded inside the show's panel
  • selected - Panel will be selected as default Show's panel

int AddImagePanel(string imagePath)

  • imagePath - The path to the image to be loaded inside the show's panel
methodAddImagePanelAt Add a new image panel to the Show's panels collection, at the specified position.

void AddImagePanelAt(int index, string imagePath, bool selected)

  • index - Index in the collection
  • imagePath - The path to the image to be loaded inside the show's panel
  • selected - Panel will be selected as default Show's panel

void AddImagePanelAt(int index, string imagePath)

  • index - Index in the collection
  • imagePath - The path to the image to be loaded inside the show's panel
methodAddUrlPanel Add a new url panel to the Show's panels collection.
Returns the panel index in the collection.

int AddUrlPanel(string url, bool selected)

  • url - The path to the page to be loaded inside the show's panel
  • selected - Panel will be selected as default Show's panel

int AddUrlPanel(string url)

  • url - The path to the page to be loaded inside the show's panel
methodAddUrlPanelAt Add a new url panel to the Show's panels collection, at the specified position.

void AddUrlPanelAt(int index, string url, bool selected)

  • index - Index in the collection
  • url - The path to the page to be loaded inside the show's panel
  • selected - Panel will be selected as default Show's panel

void AddUrlPanelAt(int index, string url)

  • index - Index in the collection
  • url - The path to the page to be loaded inside the show's panel
methodAddHtmlPanel Add a new html panel to the Show's panels collection.
Returns the panel index in the collection.

int AddHtmlPanel(string innerHtml, bool selected)

  • innerHtml - Html content of the panel
  • selected - Panel will be selected as default Show's panel

int AddHtmlPanel(string innerHtml)

  • innerHtml - Html content of the panel
methodAddHtmlPanelAt Add a new html panel to the Show's panels collection, at the specified position.

void AddHtmlPanelAt(int index, string innerHtml, bool selected)

  • index - Index in the collection
  • innerHtml - Html content of the panel
  • selected - Panel will be selected as default Show's panel

void AddHtmlPanelAt(int index, string innerHtml)

  • index - Index in the collection
  • innerHtml - Html content of the panel

Methods - Remove

Name Description
methodRemovePanel Removes the panel from the panels collection.

void RemovePanel(Panel panel)

methodRemovePanelAt Removes the panel with the specified index from the panels collection.

void RemovePanelAt(int index)

  • index - Index in the collection