5 writes to Flags
PresentationCore (5)
System\Windows\Media\ByteStreamGeometryContext.cs (3)
551
_currentPathGeometryData.
Flags
|= ((_currentPathFigureData.Flags & MilPathFigureFlags.HasCurves) != 0) ? MilPathGeometryFlags.HasCurves : 0;
552
_currentPathGeometryData.
Flags
|= ((_currentPathFigureData.Flags & MilPathFigureFlags.HasGaps) != 0) ? MilPathGeometryFlags.HasGaps : 0;
553
_currentPathGeometryData.
Flags
|= ((_currentPathFigureData.Flags & MilPathFigureFlags.IsFillable) == 0) ? MilPathGeometryFlags.HasHollows : 0;
System\Windows\Media\StreamGeometry.cs (2)
120
pGeometry->
Flags
|= MilPathGeometryFlags.BoundsValid;
140
pGeometry->
Flags
&= ~MilPathGeometryFlags.BoundsValid;
4 references to Flags
PresentationCore (4)
System\Windows\Media\StreamGeometry.cs (4)
96
bool areBoundsValid = (pGeometry->
Flags
& MilPathGeometryFlags.BoundsValid) != 0;
199
return (pPathGeometryData->
Flags
& MilPathGeometryFlags.HasCurves) != 0;
223
return (pPathGeometryData->
Flags
& MilPathGeometryFlags.HasHollows) != 0;
245
return (pPathGeometryData->
Flags
& MilPathGeometryFlags.HasGaps) != 0;