Class
OpenFileDialog

Prompts the user to open a file.

Definition

Namespace:Telerik.WinControls.Spreadsheet.UI

Assembly:Telerik.WinControls.RadSpreadsheet.dll

Syntax:

cs-api-definition
public class OpenFileDialog

Inheritance: objectOpenFileDialog

Constructors

OpenFileDialog()

Initializes an instance of the Telerik.WinControls.Spreadsheet.UI.OpenFileDialog class.

Declaration

cs-api-definition
public OpenFileDialog()

OpenFileDialog(OpenFileDialog)

Initializes an instance of the Telerik.WinControls.Spreadsheet.UI.OpenFileDialog class by given parameter of type System.Windows.Forms.OpenFileDialog.

Declaration

cs-api-definition
public OpenFileDialog(OpenFileDialog dialog)

Parameters

dialog

OpenFileDialog

The open file dialog.

Properties

FileName

Gets or sets a string containing the file name selected in the file dialog box.

Declaration

cs-api-definition
public string FileName { get; set; }

Property Value

string

Filter

Gets or sets the current file name filter string, which determines the choices that appear in the "Save as file type" or "Files of type" box in the dialog box.

Declaration

cs-api-definition
public string Filter { get; set; }

Property Value

string

SafeFileName

Gets the file name and extension for the file selected in the dialog box. The file name does not include the path.

Declaration

cs-api-definition
public string SafeFileName { get; set; }

Property Value

string

The file name and extension for the file selected in the dialog box. The file name does not include the path. The default value is an empty string.

Methods

OpenFile()

Opens the file selected by the user, with read-only permission. The file is specified by the System.Windows.Forms.FileDialog.FileName property.

Declaration

cs-api-definition
public Stream OpenFile()

Returns

Stream

A System.IO.Stream that specifies the read-only file selected by the user.

ShowDialog()

Runs a common dialog box with a default owner.

Declaration

cs-api-definition
public bool ShowDialog()

Returns

bool

true if the DialogResult is OK or Yes; otherwise false