Gets the number of bytes read during the load operation.

Syntax

public long BytesRead { get; }

Examples

The following example uses BytesRead property to get number of bytes read during the load operation.

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

if (textControl1.Load(TXTextControl.StreamType.All, ls) == System.Windows.Forms.DialogResult.OK)
{
  System.Windows.Forms.MessageBox.Show(ls.LoadedFile + " has been loaded. " + ls.BytesRead.ToString() + " bytes read.");
}

Limitations

Read only.