10 references to MilPathGeometryFlags
PresentationCore (10)
src\Microsoft.DotNet.Wpf\src\Common\Graphics\wgx_core_types.cs (1)
1016[FieldOffset(4)] internal MilPathGeometryFlags Flags;
System\Windows\Media\ByteStreamGeometryContext.cs (3)
567_currentPathGeometryData.Flags |= ((_currentPathFigureData.Flags & MilPathFigureFlags.HasCurves) != 0) ? MilPathGeometryFlags.HasCurves : 0; 568_currentPathGeometryData.Flags |= ((_currentPathFigureData.Flags & MilPathFigureFlags.HasGaps) != 0) ? MilPathGeometryFlags.HasGaps : 0; 569_currentPathGeometryData.Flags |= ((_currentPathFigureData.Flags & MilPathFigureFlags.IsFillable) == 0) ? MilPathGeometryFlags.HasHollows : 0;
System\Windows\Media\StreamGeometry.cs (6)
118bool areBoundsValid = (pGeometry->Flags & MilPathGeometryFlags.BoundsValid) != 0; 142pGeometry->Flags |= MilPathGeometryFlags.BoundsValid; 162pGeometry->Flags &= ~MilPathGeometryFlags.BoundsValid; 221return (pPathGeometryData->Flags & MilPathGeometryFlags.HasCurves) != 0; 245return (pPathGeometryData->Flags & MilPathGeometryFlags.HasHollows) != 0; 267return (pPathGeometryData->Flags & MilPathGeometryFlags.HasGaps) != 0;