​
​
​

Gets the StreamType of the file that has been loaded.

Syntax

​public StreamType LoadedStreamType { get; }
​Public ReadOnly Property LoadedStreamType() As StreamType

Examples

This example shows a simple variant of how to use the 'TXTextControl.LoadSettings.LoadedStreamType' property. Here, it is stored in a variable of the type 'TXTextControl.StreamType'.

​TXTextControl.LoadSettings ls = new TXTextControl.LoadSettings();
//...
TXTextControl.StreamType loadedStreamType = ls.LoadedStreamType;
//...
​Dim ls As TXTextControl.LoadSettings = New TXTextControl.LoadSettings()
'...
Dim loadedStreamType As TXTextControl.StreamType = ls.LoadedStreamType
'...
​

Limitations

Read only.

​