FileListBox.ReadOnly Property

Definition

Gets or sets a value that determines whether a FileListBox control contains files that have read-only attributes.

public:
 property bool ReadOnly { bool get(); void set(bool value); };
public bool ReadOnly { get; set; }
member this.ReadOnly : bool with get, set
Public Property ReadOnly As Boolean

Property Value

true if files that have the ReadOnly attribute will be displayed; otherwise false. The default is true.

Remarks

Use the ReadOnly property for a FileListBox control to specify whether files that have read-only attributes are displayed in the file list or not.

Note

If the Normal property is set to true (the default), files that have read-only attributes are displayed regardless of the ReadOnly property setting.

Note

Functions and objects in the Microsoft.VisualBasic.Compatibility.VB6 namespace are provided for use by the tools for upgrading from Visual Basic 6.0 to Visual Basic 2008. In most cases, these functions and objects duplicate functionality that you can find in other namespaces in the .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.

Applies to

See also