[]
Shows the topic with the given URL in the C1DynamicHelp control.
public void ShowTopic(string topicUrl)
| Type | Name | Description |
|---|---|---|
| string | topicUrl | String that represents the topic's internal URL. |
| Type | Condition |
|---|---|
| ArgumentNullException | topicUrl is null. |
Shows the given HelpTopic in the C1DynamicHelp control.
public void ShowTopic(HelpTopic topic)
| Type | Name | Description |
|---|---|---|
| HelpTopic | topic | HelpTopic object representing the topic. |
| Type | Condition |
|---|---|
| ArgumentNullException | topic is null. |
Shows the topic with the given context id in the C1DynamicHelp control.
public void ShowTopic(int contextID)
| Type | Name | Description |
|---|---|---|
| int | contextID | Context id representing the topic. |
| Type | Condition |
|---|---|
| ArgumentException | specified context id is unknown. |
Shows the topic associated in the TopicMap with a UI element in the C1DynamicHelp control.
public void ShowTopic(object uiElement)
| Type | Name | Description |
|---|---|---|
| object | uiElement | Object associated with the topic to display. |
| Type | Condition |
|---|---|
| ArgumentNullException | uiElement is null. |