Base:
property
Expandable
System.Windows.Forms.GridItem.Expandable
2 overrides of Expandable
System.Windows.Forms (2)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\CategoryGridEntry.cs (1)
64
public override bool
Expandable
=> !GetFlagSet(Flags.ExpandableFailed);
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\MultiPropertyDescriptorGridEntry.cs (1)
65
public override bool
Expandable
24 references to Expandable
System.Windows.Forms (24)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\GridEntry.cs (5)
315
if (!
Expandable
|| value == InternalExpanded)
589
get =>
Expandable
;
1252
, value = [{(GetPropertyTextValue()?.Replace('\0', ' ') ?? "null")}], expandable = {
Expandable
}
1620
if (
Expandable
)
2000
if (
Expandable
)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\GridEntry.GridEntryAccessibleObject.cs (8)
37
if (!this.TryGetOwnerAs(out GridEntry? owner) || !owner.
Expandable
)
52
internal override bool CanGetDefaultActionInternal => !this.TryGetOwnerAs(out GridEntry? owner) || !owner.
Expandable
;
60
=> !this.TryGetOwnerAs(out GridEntry? owner) ? ExpandCollapseState.ExpandCollapseState_Collapsed : owner.
Expandable
105
if (owner.
Expandable
)
310
if (this.TryGetOwnerAs(out GridEntry? owner) && owner.
Expandable
&& owner.Expanded)
318
if (this.TryGetOwnerAs(out GridEntry? owner) && owner.
Expandable
&& !owner.Expanded)
363
internal override bool IsIAccessibleExSupported() => this.TryGetOwnerAs(out GridEntry? owner) && owner.
Expandable
;
375
if (this.TryGetOwnerAs(out GridEntry? owner) && owner.
Expandable
)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.cs (10)
1264
if (type == RowLabel && toggleExpand && gridEntry.
Expandable
)
1562
return !_selectedGridEntry.
Expandable
;
2762
if (entry.
Expandable
)
2781
if (entry.
Expandable
)
2801
if (!entry.
Expandable
)
3378
DoubleClickRow(row, gridEntry.
Expandable
, RowLabel);
3392
DoubleClickRow(row, gridEntry.
Expandable
, RowValue);
3404
Debug.Assert(gridEntry.
Expandable
, "non-expandable IPE firing outline click");
3903
else if (_selectedGridEntry is not null && _selectedGridEntry.
Expandable
)
4469
if (entry is null || !entry.
Expandable
)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\SingleSelectRootGridEntry.cs (1)
231
if (
Expandable
&& ChildCollection is not null)