ArcGIS Pro 3.4 API Reference Guide
ArcGIS.Desktop.Core Namespace / LayoutOptions Class / SetGuideColor Method
The new guide color.
Example Version

SetGuideColor Method
Sets the layout guide color. This method must be called on the MCT. Use QueuedTask.Run.
Syntax
public void SetGuideColor( 
   CIMColor color
)

Parameters

color
The new guide color.
Example
Set LayoutOptions
//keep graphic element insert tool active
ApplicationOptions.LayoutOptions.KeepLastToolActive = true;
//no warning when deleting a map frame results in other elements being deleted
ApplicationOptions.LayoutOptions.WarnAboutAssociatedSurrounds = false;
//path to .pagx files used as templates
ApplicationOptions.LayoutOptions.LayoutTemplatePath = @"D:\data\layout_templates";

QueuedTask.Run(() =>
{
  var guideColor = ApplicationOptions.LayoutOptions.GetGuideColor();
  // set guide color
  ApplicationOptions.LayoutOptions.SetGuideColor(ColorFactory.Instance.RedRGB);
});
Requirements

Target Platforms: Windows 11, Windows 10

ArcGIS Pro version: 3.4 or higher.
See Also