[This is preliminary documentation and is subject to change.]

Gets a value indicating whether the IList has a fixed size.

Namespace: Tools.CollectionsT.GenericT
Assembly: Tools (in Tools.dll) Version: 1.5.3.38916 (1.5.3.38916)

Syntax

C#
[EditorBrowsableAttribute(EditorBrowsableState.Never)]
[BrowsableAttribute(false)]
public override sealed bool IsFixedSize { get; }
Visual Basic
<EditorBrowsableAttribute(EditorBrowsableState.Never)> _
<BrowsableAttribute(False)> _
Public Overrides NotOverridable ReadOnly Property IsFixedSize As Boolean
	Get
Visual C++
[EditorBrowsableAttribute(EditorBrowsableState::Never)]
[BrowsableAttribute(false)]
public:
virtual property bool IsFixedSize {
	bool get () override sealed;
}
F#
[<EditorBrowsableAttribute(EditorBrowsableState.Never)>]
[<BrowsableAttribute(false)>]
abstract IsFixedSize : bool
[<EditorBrowsableAttribute(EditorBrowsableState.Never)>]
[<BrowsableAttribute(false)>]
override IsFixedSize : bool
JScript
override final function get IsFixedSize () : boolean

Return Value

Always False

Remarks

Provided for compatibility with CollectionEditor

See Also