Gets or sets which item controls the size of the graph view grid, according to the source name
Namespace: Autodesk.Civil.DatabaseServices
Assembly: AeccDbMgd (in AeccDbMgd.dll) Version: 13.8.0.280
Syntax
C#
public string ClipGridAt { get; set; }
VB
Public Property ClipGridAt As String Get Set
C++
public: property String^ ClipGridAt { String^ get (); void set (String^ value); }
Property Value
StringExceptions
Exception | Condition |
---|---|
ArgumentException | Thrown when the item specified by the input name cannot be found. |
Example
This example shows how to call this method:1// There are two ways to set the ClipGrid 2// Method 1, using SectionSource.SourceName 3SectionSourceCollection sectionSources = sampleLineGroup.GetSectionSources(); 4graphDisplayOptionCollection.ClipGridAt = sectionSources[0].SourceName; 5 6// Method 2, using GraphDisplayOption.SourceName 7graphDisplayOptionCollection.ClipGridAt = graphDisplayOptionCollection[0].SourceName;