10 references to MilPathGeometryFlags
PresentationCore (10)
src\Microsoft.DotNet.Wpf\src\Common\Graphics\wgx_core_types.cs (1)
1013[FieldOffset(4)] internal MilPathGeometryFlags Flags;
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 (6)
96bool areBoundsValid = (pGeometry->Flags & MilPathGeometryFlags.BoundsValid) != 0; 120pGeometry->Flags |= MilPathGeometryFlags.BoundsValid; 140pGeometry->Flags &= ~MilPathGeometryFlags.BoundsValid; 199return (pPathGeometryData->Flags & MilPathGeometryFlags.HasCurves) != 0; 223return (pPathGeometryData->Flags & MilPathGeometryFlags.HasHollows) != 0; 245return (pPathGeometryData->Flags & MilPathGeometryFlags.HasGaps) != 0;