Gets the path and filename of the CSS file belonging to a HTML or XML document.

Syntax

public string CssFileName { get; }
Public ReadOnly Property CssFileName() As String

Examples

This example describes an easy way of using the 'TXTextControl.LoadSettings.CssFileName' property. Here, it is stored in a variable of the type 'string'.

TXTextControl.LoadSettings ls = new TXTextControl.LoadSettings();

string _cssFileName = ls.CssFileName;
System.Windows.Forms.MessageBox.Show("The path and filename of the CSS file belonging to this HTML or XML document is: " + _cssFileName);
Dim ls As TXTextControl.LoadSettings = New TXTextControl.LoadSettings()

Dim _cssFileName As String = ls.CssFileName
System.Windows.Forms.MessageBox.Show("The path and filename of the CSS file belonging to this HTML or XML document is: " & _cssFileName)

Limitations

Read only.

HTML and XML only.