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)
96
bool areBoundsValid = (pGeometry->Flags &
MilPathGeometryFlags
.BoundsValid) != 0;
120
pGeometry->Flags |=
MilPathGeometryFlags
.BoundsValid;
140
pGeometry->Flags &= ~
MilPathGeometryFlags
.BoundsValid;
199
return (pPathGeometryData->Flags &
MilPathGeometryFlags
.HasCurves) != 0;
223
return (pPathGeometryData->Flags &
MilPathGeometryFlags
.HasHollows) != 0;
245
return (pPathGeometryData->Flags &
MilPathGeometryFlags
.HasGaps) != 0;