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)
120pGeometry->Flags |= MilPathGeometryFlags.BoundsValid; 140pGeometry->Flags &= ~MilPathGeometryFlags.BoundsValid;
4 references to Flags
PresentationCore (4)
System\Windows\Media\StreamGeometry.cs (4)
96bool areBoundsValid = (pGeometry->Flags & MilPathGeometryFlags.BoundsValid) != 0; 199return (pPathGeometryData->Flags & MilPathGeometryFlags.HasCurves) != 0; 223return (pPathGeometryData->Flags & MilPathGeometryFlags.HasHollows) != 0; 245return (pPathGeometryData->Flags & MilPathGeometryFlags.HasGaps) != 0;