public void Set(VisioScripting.Models.TargetShapes targets, string name, CustomPropertyCells customprop) { this._client.Application.AssertApplicationAvailable(); this._client.Document.AssertDocumentAvailable(); if (customprop == null) { throw new System.ArgumentNullException(nameof(customprop)); } targets = targets.ResolveShapes(this._client); if (targets.Shapes.Count < 1) { return; } customprop.EncodeValues(); using (var undoscope = this._client.Application.NewUndoScope("Set Custom Property")) { foreach (var shape in targets.Shapes) { CustomPropertyHelper.Set(shape, name, customprop); } } }
public void SetCustomProperty(TargetShapes targetshapes, string name, CustomPropertyCells customprop) { if (customprop == null) { throw new System.ArgumentNullException(nameof(customprop)); } targetshapes = targetshapes.ResolveToShapes(this._client); if (targetshapes.Shapes.Count < 1) { return; } customprop.EncodeValues(); using (var undoscope = this._client.Undo.NewUndoScope(nameof(SetCustomProperty))) { foreach (var shape in targetshapes.Shapes) { CustomPropertyHelper.Set(shape, name, customprop); } } }