書式設定したテキストのハイパーリンクと画像の相対的なソースを指定することができます。デフォルトの動作は、URL を解決して関連づけられたリソースにアクセスするためにアプリケーションの現在のパスを使用することです。BaseURLDefault プロパティを使用して、相対 URL の解決方法を制御できます。このプロパティは静的で、アプリケーションのフォーマットされたテキスト エディターのすべてのインスタンスに基本 URL を設定するために使用できることに注意してください。FormattedLinkEditor の特定のインスタンスに基本 URL を設定するには、その BaseURL プロパティを使用します。
Imports Infragistics.Shared Imports Infragistics.Win Imports Infragistics.Win.Misc Imports Infragistics.Win.FormattedLinkLabel Private Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles button1.Click ' You can also specify a default base url for all instances of ' UltraFormattedLinkLabel, UltraFormattedTextEditor and FormattedLinkEditor ' in the entire application by setting the static BaseURLDefault property ' of the FormattedLinkEditor. FormattedLinkEditor.BaseURLDefault = "http://www.infragistics.com" ' You can also set it on a specific control. Me.ultraFormattedLinkLabel1.BaseURL = "http://www.infragistics.com" ' This formatted text value that uses relative url for the image. Me.ultraFormattedLinkLabel1.Value = "Logo: <img src=""images/infragistics_logo.gif""/>" End Sub
using Infragistics.Shared; using Infragistics.Win; using Infragistics.Win.Misc; using Infragistics.Win.FormattedLinkLabel; using System.Diagnostics; private void button1_Click(object sender, System.EventArgs e) { // You can also specify a default base url for all instances of // UltraFormattedLinkLabel, UltraFormattedTextEditor and FormattedLinkEditor // in the entire application by setting the static BaseURLDefault property // of the FormattedLinkEditor. FormattedLinkEditor.BaseURLDefault = "http://www.infragistics.com"; // You can also set it on a specific control. this.ultraFormattedLinkLabel1.BaseURL = "http://www.infragistics.com"; // This formatted text value that uses relative url for the image. this.ultraFormattedLinkLabel1.Value = @"Logo: <img src=""images/infragistics_logo.gif""/>"; }