Limitations
Read only.
HTML and XML only.
Gets the path and filename of the CSS file belonging to a HTML or XML document.
public string CssFileName { get; }
Public ReadOnly Property CssFileName() As String
This example describes an easy way of using the 'TXText
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)
Read only.
HTML and XML only.