13 references to ToBoolean
mscorlib (1)
system\int32.cs (1)
176return Convert.ToBoolean(m_value);
PresentationCore (8)
Core\CSharp\System\Windows\Media\Imaging\JpegBitmapEncoder.cs (4)
145return (Convert.ToBoolean((int)_transformation & (int)WICBitmapTransformOptions.WICBitmapTransformFlipHorizontal)); 171return (Convert.ToBoolean((int)_transformation & (int)WICBitmapTransformOptions.WICBitmapTransformFlipVertical)); 277return ((Convert.ToBoolean((int)_transformation & (int)WICBitmapTransformOptions.WICBitmapTransformRotate90) && (!Rotate270))); 308return ((Convert.ToBoolean((int)_transformation & (int)WICBitmapTransformOptions.WICBitmapTransformRotate180) && (!Rotate270)));
Core\CSharp\System\Windows\Media\Imaging\WmpBitmapEncoder.cs (4)
162return (Convert.ToBoolean((int)_transformation & (int)WICBitmapTransformOptions.WICBitmapTransformFlipHorizontal)); 188return (Convert.ToBoolean((int)_transformation & (int)WICBitmapTransformOptions.WICBitmapTransformFlipVertical)); 803return ((Convert.ToBoolean((int)_transformation & (int)WICBitmapTransformOptions.WICBitmapTransformRotate90) && (!Rotate270))); 834return ((Convert.ToBoolean((int)_transformation & (int)WICBitmapTransformOptions.WICBitmapTransformRotate180) && (!Rotate270)));
System.Workflow.ComponentModel (4)
AuthoringOM\Design\WorkflowPrinting.cs (4)
463if (null != registryValue && registryValue is int) this.headerCustom = Convert.ToBoolean((int)registryValue); 466if (null != registryValue && registryValue is int) this.footerCustom = Convert.ToBoolean((int)registryValue); 469if (null != registryValue && registryValue is int) this.centerHorizontally = Convert.ToBoolean((int)registryValue); 472if (null != registryValue && registryValue is int) this.centerVertically = Convert.ToBoolean((int)registryValue);