| Syntax: |
|
[C#]
public DialogResult Load();
public DialogResult Load(StreamType streamType);
public void Load(string path, StreamType streamType);
public void Load(FileStream fileStream, StreamType streamType);
public void Load(byte[] binaryData, BinaryStreamType binaryStreamType);
public void Load(string stringData, StringStreamType stringStreamType);
public DialogResult Load(StreamType streamType, LoadSettings loadSettings);
public void Load(string path, StreamType streamType, LoadSettings loadSettings);
public void Load(FileStream fileStream, StreamType streamType, LoadSettings loadSettings);
public void Load(byte[] binaryData, BinaryStreamType binaryStreamType, LoadSettings loadSettings);
public void Load(string stringData, StringStreamType stringStreamType, LoadSettings loadSettings);
[Visual Basic]
Public Function Load() As DialogResult
Public Function Load(ByVal streamType As StreamType) As DialogResult
Public Sub Load(ByVal path As String, ByVal streamType As StreamType)
Public Sub Load(ByVal fileStream As FileStream, ByVal streamType As StreamType)
Public Sub Load(ByVal binaryData As Byte(), ByVal binaryStreamType As BinaryStreamType)
Public Sub Load(ByVal stringData As String, ByVal stringStreamType As StringStreamType)
Public Function Load(ByVal streamType As StreamType, ByVal loadSettings As LoadSettings) As DialogResult
Public Sub Load(ByVal path As String, ByVal streamType As StreamType, ByVal loadSettings As LoadSettings)
Public Sub Load(ByVal fileStream As FileStream, ByVal streamType As StreamType, ByVal loadSettings As LoadSettings)
Public Sub Load(ByVal binaryData As Byte(), ByVal binaryStreamType As BinaryStreamType, ByVal loadSettings As LoadSettings)
Public Sub Load(ByVal stringData As String, ByVal stringStreamType As StringStreamType, ByVal loadSettings As LoadSettings)
|