Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Core / CSharp / System / Windows / Media / GuidelineCollection.cs / 1305600 / 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
- Vector3DCollectionValueSerializer.cs
- WindowsComboBox.cs
- TextServicesDisplayAttributePropertyRanges.cs
- ExpiredSecurityTokenException.cs
- Span.cs
- URL.cs
- TraversalRequest.cs
- SqlCacheDependencyDatabase.cs
- EFTableProvider.cs
- SerializationObjectManager.cs
- SafeThreadHandle.cs
- Int16Converter.cs
- HttpServerUtilityWrapper.cs
- CustomAttributeBuilder.cs
- ChangeConflicts.cs
- XpsFilter.cs
- SizeAnimationBase.cs
- ColumnResizeAdorner.cs
- Font.cs
- ModelFunctionTypeElement.cs
- UnmanagedHandle.cs
- EdmComplexPropertyAttribute.cs
- DocobjHost.cs
- ApplicationInfo.cs
- EdmComplexPropertyAttribute.cs
- RegexCompilationInfo.cs
- X509Utils.cs
- Inflater.cs
- TypeHelpers.cs
- NativeMethods.cs
- WmlTextViewAdapter.cs
- DataSvcMapFile.cs
- Pen.cs
- ProvideValueServiceProvider.cs
- PropagationProtocolsTracing.cs
- FlowDocumentPageViewerAutomationPeer.cs
- Span.cs
- InstanceOwnerException.cs
- GenericEnumerator.cs
- AnnotationComponentChooser.cs
- AlphaSortedEnumConverter.cs
- PassportAuthenticationModule.cs
- TraceEventCache.cs
- PreviewPrintController.cs
- CharacterString.cs
- WhitespaceRule.cs
- SqlBooleanizer.cs
- SqlInfoMessageEvent.cs
- prefixendpointaddressmessagefiltertable.cs
- ManipulationStartedEventArgs.cs
- StrongTypingException.cs
- XNodeValidator.cs
- DbMetaDataFactory.cs
- OleDbParameterCollection.cs
- Rect3DConverter.cs
- EntityContainer.cs
- ConfigurationLocation.cs
- MenuEventArgs.cs
- ScriptingWebServicesSectionGroup.cs
- xdrvalidator.cs
- TypedTableBaseExtensions.cs
- Listbox.cs
- CalendarDay.cs
- UInt64Storage.cs
- DataAdapter.cs
- Vars.cs
- ContextMenuStrip.cs
- ListBoxItem.cs
- ObjectKeyFrameCollection.cs
- ContentTextAutomationPeer.cs
- HostedController.cs
- GridErrorDlg.cs
- ImageDrawing.cs
- XmlByteStreamReader.cs
- HitTestWithGeometryDrawingContextWalker.cs
- AnnouncementEndpoint.cs
- TextRange.cs
- SoapElementAttribute.cs
- DbConnectionPoolIdentity.cs
- PriorityBindingExpression.cs
- ISAPIApplicationHost.cs
- RangeValidator.cs
- ThreadStateException.cs
- ProxyWebPartConnectionCollection.cs
- XPathDocumentNavigator.cs
- IncrementalReadDecoders.cs
- VisualTarget.cs
- RankException.cs
- SocketPermission.cs
- JapaneseCalendar.cs
- TextBounds.cs
- ContainerSelectorActiveEvent.cs
- ZipIOEndOfCentralDirectoryBlock.cs
- IdentityHolder.cs
- ServiceContractListItem.cs
- SessionEndingCancelEventArgs.cs
- EnumerableRowCollectionExtensions.cs
- CheckBox.cs
- PageStatePersister.cs
- ACL.cs