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
- MdbDataFileEditor.cs
- DataBindingValueUIHandler.cs
- _BufferOffsetSize.cs
- DataBindingCollection.cs
- NameSpaceEvent.cs
- webproxy.cs
- ActivityBindForm.Designer.cs
- Button.cs
- TraceUtility.cs
- CodeConstructor.cs
- FrameworkContentElementAutomationPeer.cs
- CFStream.cs
- RangeValidator.cs
- JsonFormatWriterGenerator.cs
- DocumentPageHost.cs
- FixUp.cs
- TextElementAutomationPeer.cs
- GroupItemAutomationPeer.cs
- ObjectHelper.cs
- ByteAnimationBase.cs
- InfoCardKeyedHashAlgorithm.cs
- AttachedPropertyBrowsableForTypeAttribute.cs
- AttachedPropertyBrowsableForChildrenAttribute.cs
- AttachedPropertyBrowsableForChildrenAttribute.cs
- EntityCommandExecutionException.cs
- OdbcDataReader.cs
- precedingsibling.cs
- LassoHelper.cs
- TypeSource.cs
- ContainerActivationHelper.cs
- UInt64.cs
- XPathParser.cs
- PartialArray.cs
- FilterElement.cs
- DateTimeHelper.cs
- BitmapPalettes.cs
- CodeDOMProvider.cs
- XmlIncludeAttribute.cs
- ErrorTableItemStyle.cs
- DataControlLinkButton.cs
- DefaultIfEmptyQueryOperator.cs
- AutomationElement.cs
- Activator.cs
- Executor.cs
- VerificationException.cs
- HttpCachePolicy.cs
- GeneralTransform3DCollection.cs
- AssemblyBuilder.cs
- SqlNodeAnnotation.cs
- DataExpression.cs
- TreeNodeBindingDepthConverter.cs
- SelectionRangeConverter.cs
- Base64Encoding.cs
- MSAAWinEventWrap.cs
- TextContainerHelper.cs
- TraceSource.cs
- DataSourceView.cs
- EventSinkActivity.cs
- SizeValueSerializer.cs
- ComponentChangingEvent.cs
- XmlSchemaAll.cs
- _Events.cs
- TextContainerChangedEventArgs.cs
- BuildManager.cs
- FixedPageStructure.cs
- SchemaElementLookUpTable.cs
- DetailsViewInsertEventArgs.cs
- MultiBindingExpression.cs
- NamespaceListProperty.cs
- WebPartVerbsEventArgs.cs
- metadatamappinghashervisitor.hashsourcebuilder.cs
- DecimalStorage.cs
- InternalCache.cs
- StorageMappingItemLoader.cs
- EntityDataSourceViewSchema.cs
- Base64Stream.cs
- HorizontalAlignConverter.cs
- OpenFileDialog.cs
- XPathNodeInfoAtom.cs
- DataGridViewImageCell.cs
- CorrelationTokenInvalidatedHandler.cs
- Crypto.cs
- CellTreeNode.cs
- AppDomainManager.cs
- SizeFConverter.cs
- TabItemAutomationPeer.cs
- SelectingProviderEventArgs.cs
- Pair.cs
- DataRelationCollection.cs
- SortKey.cs
- HttpApplicationFactory.cs
- TimeEnumHelper.cs
- EventSchemaTraceListener.cs
- ClientConfigurationSystem.cs
- AppDomainAttributes.cs
- CodeCompileUnit.cs
- TextOutput.cs
- SqlConnectionManager.cs
- Grant.cs
- ProgressBarAutomationPeer.cs