TextColumnCollection

遗产: java.lang.Object

public class TextColumnCollection

的集合TextColumn表示文档的一部分中所有文本列的对象。

要了解更多信息,请访问Working with Sections文档文章。

利用setCount(int)设置文本列数。

要使所有列的宽度相等且间距均匀,请设置getEvenlySpaced() / setEvenlySpaced(boolean)true并指定列之间的空间量getSpacing() / setSpacing(double)MS Word 会自动计算列宽。

如果你有EvenlySpaced调成false,您需要分别为每一列指定宽度和间距。使用索引器访问个人TextColumn对象。

使用自定义列宽时,请确保所有列宽和它们之间的间距之和等于页面宽度减去左右页边距。

方法

方法描述
equals(Object arg0)
get(int index)返回指定索引处的文本列。
getClass()
getCount()获取文档部分中的列数。
getEvenlySpaced()True如果文本列宽度相等且间距均匀。
getLineBetween()什么时候true, 在列之间添加一条垂直线。
getSpacing()当列均匀分布时,获取或设置每列之间的间距量(以磅为单位)。
getWidth()当列间距均匀时,获取列的宽度。
hashCode()
notify()
notifyAll()
setCount(int newCount)将文本排列到指定数量的文本列中。
setEvenlySpaced(boolean value)True如果文本列宽度相等且间距均匀。
setLineBetween(boolean value)什么时候true, 在列之间添加一条垂直线。
setSpacing(double value)当列均匀分布时,获取或设置每列之间的间距量(以磅为单位)。
toString()
wait()
wait(long arg0)
wait(long arg0, int arg1)

equals(Object arg0)

public boolean equals(Object arg0)

参数:

范围类型描述
arg0java.lang.Object

退货: 布尔值

get(int index)

public TextColumn get(int index)

返回指定索引处的文本列。

参数:

范围类型描述
indexint

退货: TextColumn - 指定索引处的文本列。

getClass()

public final native Class<?> getClass()

退货: java.lang.Class

getCount()

public int getCount()

获取文档部分中的列数。

退货: int - 文档部分中的列数。

getEvenlySpaced()

public boolean getEvenlySpaced()

True如果文本列宽度相等且间距均匀。

退货: boolean - 相应的布尔值。

getLineBetween()

public boolean getLineBetween()

什么时候true, 在列之间添加一条垂直线。

退货: boolean - 相应的布尔值。

getSpacing()

public double getSpacing()

当列均匀分布时,获取或设置每列之间的间距量(以磅为单位)。只有当getEvenlySpaced() / setEvenlySpaced(boolean)被设定为true.

退货: double - 相应的双精度值。

getWidth()

public double getWidth()

当列间距均匀时,获取列的宽度。

只有当getEvenlySpaced() / setEvenlySpaced(boolean)被设定为true.

退货: double - 相应的双精度值。

hashCode()

public native int hashCode()

退货: 整数

notify()

public final native void notify()

notifyAll()

public final native void notifyAll()

setCount(int newCount)

public void setCount(int newCount)

将文本排列到指定数量的文本列中。

什么时候getEvenlySpaced() / setEvenlySpaced(boolean)false然后你增加列数,新的TextColumn创建的对象宽度和间距为零。您需要为新列设置宽度和间距。

参数:

范围类型描述
newCountint文本要排列的列数。

setEvenlySpaced(boolean value)

public void setEvenlySpaced(boolean value)

True如果文本列宽度相等且间距均匀。

参数:

范围类型描述
valueboolean对应的布尔值。

setLineBetween(boolean value)

public void setLineBetween(boolean value)

什么时候true, 在列之间添加一条垂直线。

参数:

范围类型描述
valueboolean对应的布尔值。

setSpacing(double value)

public void setSpacing(double value)

当列均匀分布时,获取或设置每列之间的间距量(以磅为单位)。只有当getEvenlySpaced() / setEvenlySpaced(boolean)被设定为true.

参数:

范围类型描述
valuedouble对应的双精度值。

toString()

public String toString()

退货: java.lang.字符串

wait()

public final void wait()

wait(long arg0)

public final native void wait(long arg0)

参数:

范围类型描述
arg0long

wait(long arg0, int arg1)

public final void wait(long arg0, int arg1)

参数:

范围类型描述
arg0long
arg1int