Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / wpf / src / Core / CSharp / System / Windows / Media / GuidelineCollection.cs / 1 / GuidelineCollection.cs
//---------------------------------------------------------------------------- // // Copyright (c) Microsoft Corporation. All rights reserved. // // Description: // The GuidelineSet object represents a set of guidelines // used in rendering for better adjusting rendered figures to device pixel grid. // // History: // 2005/01/17 : mikhaill - Created // //--------------------------------------------------------------------------- using System; using System.Collections; using System.Collections.Generic; using System.Diagnostics; using System.Windows; using System.Windows.Media; using System.Windows.Media.Animation; using System.Windows.Media.Composition; using System.Runtime.InteropServices; using System.Security; using System.Security.Permissions; namespace System.Windows.Media { ////// The GuidelineSet object represents a set of guide lines /// used in rendering for better adjusting rendered figures to device pixel grid. /// /// public partial class GuidelineSet : Animatable, DUCE.IResource { #region Constructors ////// Default constructor /// public GuidelineSet() { } ////// Constructs a new GuidelineSet object. /// This constructor is internal for now, till we'll find a solution /// for multi-path dynamic guideline implementation. If/when it'll happen, /// it should become "public" so that the next constructor (without "isDynamic' /// argument) may go away. /// /// Array of X coordinates that defines a set of vertical guidelines. /// Array of Y coordinates that defines a set of horizontal guidelines. /// Usage flag: when true then rendering machine will detect animation state and apply subpixel animation behavior. internal GuidelineSet(double[] guidelinesX, double[] guidelinesY, bool isDynamic) { if (guidelinesX != null) { // Dynamic guideline is defined by a pair of numbers: (coordinate, shift), // so the legnth of array should be even. Debug.Assert(!isDynamic || guidelinesX.Length % 2 == 0); GuidelinesX = new DoubleCollection(guidelinesX); } if (guidelinesY != null) { // Dynamic guideline is defined by a pair of numbers: (coordinate, shift), // so the legnth of array should be even. Debug.Assert(!isDynamic || guidelinesY.Length % 2 == 0); GuidelinesY = new DoubleCollection(guidelinesY); } IsDynamic = isDynamic; } ////// Constructs a new GuidelineSet object. /// /// Array of X coordinates that defines a set of vertical guidelines. /// Array of Y coordinates that defines a set of horizontal guidelines. public GuidelineSet(double[] guidelinesX, double[] guidelinesY) { if (guidelinesX != null) { GuidelinesX = new DoubleCollection(guidelinesX); } if (guidelinesY != null) { GuidelinesY = new DoubleCollection(guidelinesY); } } #endregion Constructors } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //---------------------------------------------------------------------------- // // Copyright (c) Microsoft Corporation. All rights reserved. // // Description: // The GuidelineSet object represents a set of guidelines // used in rendering for better adjusting rendered figures to device pixel grid. // // History: // 2005/01/17 : mikhaill - Created // //--------------------------------------------------------------------------- using System; using System.Collections; using System.Collections.Generic; using System.Diagnostics; using System.Windows; using System.Windows.Media; using System.Windows.Media.Animation; using System.Windows.Media.Composition; using System.Runtime.InteropServices; using System.Security; using System.Security.Permissions; namespace System.Windows.Media { ////// The GuidelineSet object represents a set of guide lines /// used in rendering for better adjusting rendered figures to device pixel grid. /// /// public partial class GuidelineSet : Animatable, DUCE.IResource { #region Constructors ////// Default constructor /// public GuidelineSet() { } ////// Constructs a new GuidelineSet object. /// This constructor is internal for now, till we'll find a solution /// for multi-path dynamic guideline implementation. If/when it'll happen, /// it should become "public" so that the next constructor (without "isDynamic' /// argument) may go away. /// /// Array of X coordinates that defines a set of vertical guidelines. /// Array of Y coordinates that defines a set of horizontal guidelines. /// Usage flag: when true then rendering machine will detect animation state and apply subpixel animation behavior. internal GuidelineSet(double[] guidelinesX, double[] guidelinesY, bool isDynamic) { if (guidelinesX != null) { // Dynamic guideline is defined by a pair of numbers: (coordinate, shift), // so the legnth of array should be even. Debug.Assert(!isDynamic || guidelinesX.Length % 2 == 0); GuidelinesX = new DoubleCollection(guidelinesX); } if (guidelinesY != null) { // Dynamic guideline is defined by a pair of numbers: (coordinate, shift), // so the legnth of array should be even. Debug.Assert(!isDynamic || guidelinesY.Length % 2 == 0); GuidelinesY = new DoubleCollection(guidelinesY); } IsDynamic = isDynamic; } ////// Constructs a new GuidelineSet object. /// /// Array of X coordinates that defines a set of vertical guidelines. /// Array of Y coordinates that defines a set of horizontal guidelines. public GuidelineSet(double[] guidelinesX, double[] guidelinesY) { if (guidelinesX != null) { GuidelinesX = new DoubleCollection(guidelinesX); } if (guidelinesY != null) { GuidelinesY = new DoubleCollection(guidelinesY); } } #endregion Constructors } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- CompilerWrapper.cs
- Token.cs
- AuthenticatedStream.cs
- DateTimeValueSerializer.cs
- UserControlBuildProvider.cs
- CustomAttributeSerializer.cs
- TreeViewTemplateSelector.cs
- ImageBrush.cs
- ClientType.cs
- ParseChildrenAsPropertiesAttribute.cs
- ServerValidateEventArgs.cs
- GridProviderWrapper.cs
- DbParameterCollectionHelper.cs
- ManagedFilter.cs
- XmlBaseWriter.cs
- UpdateDelegates.Generated.cs
- Zone.cs
- EncoderBestFitFallback.cs
- InheritanceUI.cs
- Drawing.cs
- VirtualPathUtility.cs
- ProcessThread.cs
- Int64KeyFrameCollection.cs
- ParserStreamGeometryContext.cs
- CodeAttributeArgument.cs
- OpCopier.cs
- FullTrustAssembly.cs
- GreenMethods.cs
- EnvelopeVersion.cs
- DbConnectionClosed.cs
- DrawingCollection.cs
- HelpProvider.cs
- printdlgexmarshaler.cs
- ArrayWithOffset.cs
- RepeatButton.cs
- Stack.cs
- EmbeddedObject.cs
- EntityStoreSchemaGenerator.cs
- CmsInterop.cs
- externdll.cs
- SafeNativeMethods.cs
- TheQuery.cs
- XmlNamedNodeMap.cs
- AutomationIdentifier.cs
- ListViewInsertEventArgs.cs
- NamedElement.cs
- ColorMatrix.cs
- CqlIdentifiers.cs
- NonParentingControl.cs
- ConfigurationManagerHelper.cs
- ConfigurationManager.cs
- BaseTemplateBuildProvider.cs
- ExpressionReplacer.cs
- Certificate.cs
- XPathNode.cs
- StateMachineHelpers.cs
- EDesignUtil.cs
- ProtectedConfigurationProviderCollection.cs
- SynthesizerStateChangedEventArgs.cs
- GetWinFXPath.cs
- ThemeInfoAttribute.cs
- DATA_BLOB.cs
- CompositeControl.cs
- ActionFrame.cs
- HttpResponseInternalWrapper.cs
- dataprotectionpermission.cs
- AppDomainShutdownMonitor.cs
- WeakReadOnlyCollection.cs
- GeneralTransform3D.cs
- InputMethodStateTypeInfo.cs
- SystemIPGlobalProperties.cs
- DateTime.cs
- mda.cs
- Token.cs
- PropertyDescriptor.cs
- CqlBlock.cs
- DLinqColumnProvider.cs
- EnterpriseServicesHelper.cs
- PerformanceCountersElement.cs
- StrongNameIdentityPermission.cs
- arabicshape.cs
- EncoderBestFitFallback.cs
- IteratorFilter.cs
- DateTimePicker.cs
- ArrayConverter.cs
- CookielessHelper.cs
- RepeatInfo.cs
- SessionParameter.cs
- HttpContextServiceHost.cs
- ProfileServiceManager.cs
- WebPartAuthorizationEventArgs.cs
- x509store.cs
- RightsManagementInformation.cs
- Visual3D.cs
- Size3DConverter.cs
- DictionaryBase.cs
- DataKeyArray.cs
- RemotingConfiguration.cs
- FunctionGenerator.cs
- Number.cs