AnalysisRegion.GetBounds 方法
获取 AnalysisRegion 的边框。
命名空间: System.Windows.Ink
程序集: IAWinFX(在 IAWinFX.dll 中)
语法
声明
Public Function GetBounds As Rect
用法
Dim instance As AnalysisRegion
Dim returnValue As Rect
returnValue = instance.GetBounds()
public Rect GetBounds()
public:
Rect GetBounds()
public Rect GetBounds()
public function GetBounds() : Rect
返回值
类型:System.Windows.Rect
使用墨迹空间坐标定义的 AnalysisRegion 的边框。
备注
边框以墨迹空间坐标表示。
如果 AnalysisRegion 表示无限区域,则返回的 Rectangle 的 Top 和 Left 属性定义 MinValue,而 Width 和 Height 属性定义 MaxValue。
如果 AnalysisRegion 表示空区域,则矩形的 Top、Left、Width 和 Height 属性都为 0。
示例
此示例演示如何访问名为 theFirstAnalysisRegion 的 AnalysisRegion 的 GetBounds 属性。
' Display the bounds of an AnalysisRegion object.
MessageBox.Show("The bounding rectangle of the AnalysisRegion is: " + _
theFirstAnalysisRegion.GetBounds().ToString())
// Display the bounds of an AnalysisRegion object.
MessageBox.Show(
"The bounding rectangle of the AnalysisRegion is: "
+ theFirstAnalysisRegion.GetBounds().ToString());
平台
Windows Vista
.NET Framework 和 .NET Compact Framework 并不是对每个平台的所有版本都提供支持。有关支持的版本的列表,请参见.NET Framework 系统要求。
版本信息
.NET Framework
受以下版本支持:3.0
另请参见
参考
AnalysisRegionToRegion()