当前位置: 首页>>代码示例>>VB.NET>>正文


VB.NET Hyperlink构造函数代码示例

本文整理汇总了VB.NET中System.Windows.Documents.Hyperlink.Hyperlink构造函数的典型用法代码示例。如果您正苦于以下问题:VB.NET Hyperlink构造函数的具体用法?VB.NET Hyperlink怎么用?VB.NET Hyperlink使用的例子?那么恭喜您, 这里精选的构造函数代码示例或许可以为您提供帮助。您也可以进一步了解该构造函数所在System.Windows.Documents.Hyperlink的用法示例。


在下文中一共展示了Hyperlink构造函数的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的VB.NET代码示例。

示例1: Run

' A child Inline element for the new Hyperlink element.
Dim runx As New Run("Link text for the Hyperlink element.")

' After this line executes, the new element "hyper1"
' contains the specified Inline element, "runx".
Dim hyperl As New Hyperlink(runx)
开发者ID:VB.NET开发者,项目名称:System.Windows.Documents,代码行数:6,代码来源:Hyperlink

示例2: Run

' A child Inline element for the new Hyperlink element.
Dim runx As New Run("Link text for the Hyperlink element.")

' An empty paragraph will serve as the container for the new Hyperlink element.
Dim parx As New Paragraph()

' After this line executes, the new element "hyperl"
' contains the specified Inline element, "runx".  Also, "hyperl" is
' inserted at the point indicated by the insertionPosition parameter, 
' which in this case indicates the content start position in the Paragraph 
' element "parx".
Dim hyperl As New Hyperlink(runx, parx.ContentStart)
开发者ID:VB.NET开发者,项目名称:System.Windows.Documents,代码行数:12,代码来源:Hyperlink

示例3: Paragraph

' Create a paragraph and three text runs to serve as example content.  
Dim parx As New Paragraph()
Dim run1 As New Run("Text run 1.")
Dim run2 As New Run("Text to link.")
Dim run3 As New Run("Text run 3.")

' Add the three text runs to the paragraph, separated by linebreaks.
parx.Inlines.Add(run1)
parx.Inlines.Add(New LineBreak())
parx.Inlines.Add(run2)
parx.Inlines.Add(New LineBreak())
parx.Inlines.Add(run3)

' After this line executes, the selection of content
' indicated by the "start" and "end" parameters will be
' enclosed by the new Hyperlink.  In this case, the new Hyperlink
' will enclose the entire contents of the text run "run2".  
Dim hyperl As New Hyperlink(run2.ContentStart, run2.ContentEnd)
开发者ID:VB.NET开发者,项目名称:System.Windows.Documents,代码行数:18,代码来源:Hyperlink


注:本文中的System.Windows.Documents.Hyperlink.Hyperlink构造函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。