Gets or sets which item controls the size of the graph view grid, according to the source name
Namespace: Autodesk.Civil.DatabaseServicesAssembly: AeccDbMgd (in AeccDbMgd.dll) Version: 13.4.2516.0
Syntax
C# |
---|
public string ClipGridAt { get; set; } |
Visual Basic |
---|
Public Property ClipGridAt As String
Get
Set |
Visual C++ |
---|
public:
property String^ ClipGridAt {
String^ get ();
void set (String^ value);
} |
Examples
This example shows how to call this method:
CopyC#
1
2
3SectionSourceCollection sectionSources = sampleLineGroup.GetSectionSources();
4graphDisplayOptionCollection.ClipGridAt = sectionSources[0].SourceName;
5
6
7graphDisplayOptionCollection.ClipGridAt = graphDisplayOptionCollection[0].SourceName;
Exceptions
Exception | Condition |
---|
System..::..ArgumentException |
Thrown when the item specified by the input name cannot be found.
|
See Also