Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Core / System / Windows / Media / DashStyle.cs / 1 / DashStyle.cs
//---------------------------------------------------------------------------- // // Copyright (c) Microsoft Corporation. All rights reserved. // // Description: Implementation of the class DashStyle // // History: 11\15\2004: [....] - Created it // //--------------------------------------------------------------------------- using System; using MS.Internal; using System.ComponentModel; using System.ComponentModel.Design.Serialization; using System.Diagnostics; using System.Reflection; using System.Collections; using System.Collections.Generic; using System.Globalization; using System.Windows.Media; using System.Windows.Media.Composition; using System.Windows; using System.Text.RegularExpressions; using System.Windows.Media.Animation; using System.Runtime.InteropServices; using System.Security; using System.Security.Permissions; using SR=MS.Internal.PresentationCore.SR; using SRID=MS.Internal.PresentationCore.SRID; namespace System.Windows.Media { #region DashStyle ////// This class captures the array of dashe and gap lengths and the dash offset. /// [Localizability(LocalizationCategory.None, Readability = Readability.Unreadable)] public partial class DashStyle : Animatable, DUCE.IResource { #region Constructors ////// Default constructor /// public DashStyle() { } ////// Constructor from an array and offset /// /// The array of lengths of dashes and gaps, measured in Thickness units. /// If the value of dashes is null then the style will be solid /// /// /// Determines where in the dash sequence the stroke will start /// /// public DashStyle(IEnumerabledashes, Double offset) { Offset = offset; if (dashes != null) { Dashes = new DoubleCollection(dashes); } } #endregion Constructors #region Internal Methods /// /// Returns the dashes information. /// ////// Critical: Returns a pointer and manipulates unsafe code.This data /// is safe to expose, it is the pointer manipulation that makes it risky. /// [SecurityCritical] internal unsafe void GetDashData(MIL_PEN_DATA* pData, out double[] dashArray) { DoubleCollection vDashes = Dashes; int count = 0; if (vDashes != null) { count = vDashes.Count; } unsafe { pData->DashArraySize = (UInt32)count * sizeof(double); pData->DashOffset = Offset; } if (count > 0) { dashArray = vDashes._collection.ToArray(); } else { dashArray = null; } } #endregion Internal Methods } #endregion } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- GridViewColumnHeader.cs
- AttachedPropertyBrowsableForTypeAttribute.cs
- GeometryDrawing.cs
- TrustLevelCollection.cs
- PersonalizationDictionary.cs
- UserPreferenceChangingEventArgs.cs
- Root.cs
- GeneralTransform3D.cs
- DeploymentExceptionMapper.cs
- Table.cs
- PeerObject.cs
- InterleavedZipPartStream.cs
- PerfCounterSection.cs
- Message.cs
- TextEditorDragDrop.cs
- OrthographicCamera.cs
- ObjectToIdCache.cs
- PrintControllerWithStatusDialog.cs
- HttpListenerException.cs
- PersonalizationState.cs
- ThumbAutomationPeer.cs
- HMACSHA1.cs
- Selection.cs
- ActivationService.cs
- Menu.cs
- ExtensionSimplifierMarkupObject.cs
- VarRemapper.cs
- SizeAnimationClockResource.cs
- MenuStrip.cs
- ContentWrapperAttribute.cs
- FontResourceCache.cs
- DataControlImageButton.cs
- ArgumentException.cs
- UnsafeNativeMethods.cs
- FieldBuilder.cs
- assemblycache.cs
- DBSchemaRow.cs
- DiscreteKeyFrames.cs
- ToolboxItemFilterAttribute.cs
- DLinqAssociationProvider.cs
- DataGridViewIntLinkedList.cs
- Guid.cs
- Attachment.cs
- TimeManager.cs
- TaiwanCalendar.cs
- XmlSchemaExternal.cs
- _DigestClient.cs
- DBParameter.cs
- PageCodeDomTreeGenerator.cs
- MsmqIntegrationElement.cs
- ItemPager.cs
- ParameterReplacerVisitor.cs
- baseaxisquery.cs
- namescope.cs
- CachedFontFace.cs
- XmlSerializationGeneratedCode.cs
- CaseStatement.cs
- AssemblyCollection.cs
- SqlDeflator.cs
- ConfigurationManagerHelper.cs
- TrustManagerPromptUI.cs
- EventLogQuery.cs
- path.cs
- HtmlTableCell.cs
- UnregisterInfo.cs
- DataSourceExpressionCollection.cs
- ProcessInputEventArgs.cs
- ToolStripSplitStackLayout.cs
- CompositeDataBoundControl.cs
- ParameterEditorUserControl.cs
- Context.cs
- ClientOptions.cs
- SqlTrackingQuery.cs
- RequestCache.cs
- Int32Animation.cs
- StylusButtonEventArgs.cs
- XsdDataContractImporter.cs
- ReturnEventArgs.cs
- RightsManagementPermission.cs
- DesignerDataRelationship.cs
- CngKey.cs
- SurrogateSelector.cs
- FlowDocumentScrollViewer.cs
- TypeEnumerableViewSchema.cs
- ColorTransformHelper.cs
- FontFamily.cs
- _LocalDataStore.cs
- InfoCard.cs
- PrintingPermission.cs
- BuildDependencySet.cs
- MemoryMappedFileSecurity.cs
- WebBrowserHelper.cs
- DataGridViewAutoSizeModeEventArgs.cs
- CustomError.cs
- PerformanceCounterPermission.cs
- Matrix3DConverter.cs
- ZipIOLocalFileHeader.cs
- SQlBooleanStorage.cs
- RewritingPass.cs
- ProgressBarAutomationPeer.cs