Class CfnAnalysis.PercentVisibleRangeProperty
The percent range in the visible range.
Inheritance
System.Object
CfnAnalysis.PercentVisibleRangeProperty
Implements
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.AWS.QuickSight.dll
Syntax (csharp)
public class PercentVisibleRangeProperty : Object, CfnAnalysis.IPercentVisibleRangeProperty
Syntax (vb)
Public Class PercentVisibleRangeProperty
Inherits Object
Implements CfnAnalysis.IPercentVisibleRangeProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.QuickSight;
var percentVisibleRangeProperty = new PercentVisibleRangeProperty {
From = 123,
To = 123
};
Synopsis
Constructors
PercentVisibleRangeProperty() |
Properties
From | The lower bound of the range. |
To | The top bound of the range. |
Constructors
PercentVisibleRangeProperty()
public PercentVisibleRangeProperty()
Properties
From
The lower bound of the range.
public Nullable<double> From { get; set; }
Property Value
System.Nullable<System.Double>
Remarks
To
The top bound of the range.
public Nullable<double> To { get; set; }
Property Value
System.Nullable<System.Double>