CRichEditView::GetMargins 是 MFC(Microsoft Foundation Classes)中 CRichEditView 类的公共方法之一。这个方法用于获取编辑视图的页边距(margins)。

在 CRichEditView 类中,GetMargins 方法的原型通常如下:
void CRichEditView::GetMargins(
   LPRECT lpRectMargins,
   LPRECT lpRectIndent
) const;

这个方法有两个参数:

1. lpRectMargins:用于接收页边距信息的 RECT 结构体指针。
2. lpRectIndent:用于接收缩进信息的 RECT 结构体指针。

你可以调用这个方法来获取当前编辑视图的页边距和缩进信息。例如:
CRect rectMargins, rectIndent;
GetMargins(&rectMargins, &rectIndent);

// 现在,rectMargins 中包含了页边距的信息,rectIndent 中包含了缩进的信息。

这是一个简单的示例,实际上,你可能需要在调用此方法之前创建合适的 CRect 对象,并将其传递给 GetMargins 方法。这个方法通常在需要获取页边距和缩进信息时使用,以便进行相关的布局和显示操作。


转载请注明出处:http://www.zyzy.cn/article/detail/22255/MFC/CRichEditView