net.rgielen.com4j.office2010.excel.AllowEditRange Maven / Gradle / Ivy
The newest version!
package net.rgielen.com4j.office2010.excel ;
import com4j.*;
@IID("{00020400-0000-0000-C000-000000000046}")
public interface AllowEditRange extends Com4jObject {
// Methods:
/**
*
* Getter method for the COM property "Title"
*
*/
@DISPID(199)
@PropGet
java.lang.String title();
/**
*
* Setter method for the COM property "Title"
*
* @param rhs Mandatory java.lang.String parameter.
*/
@DISPID(199)
@PropPut
void title(
java.lang.String rhs);
/**
*
* Getter method for the COM property "Range"
*
*/
@DISPID(197)
@PropGet
net.rgielen.com4j.office2010.excel.Range range();
/**
*
* Setter method for the COM property "Range"
*
* @param rhs Mandatory net.rgielen.com4j.office2010.excel.Range parameter.
*/
@DISPID(197)
@PropPut
void range(
net.rgielen.com4j.office2010.excel.Range rhs);
/**
* @param password Mandatory java.lang.String parameter.
*/
@DISPID(2237)
void changePassword(
java.lang.String password);
/**
*/
@DISPID(117)
void delete();
/**
* @param password Optional parameter. Default value is com4j.Variant.getMissing()
*/
@DISPID(285)
void unprotect(
@Optional java.lang.Object password);
/**
*
* Getter method for the COM property "Users"
*
*/
@DISPID(2238)
@PropGet
net.rgielen.com4j.office2010.excel.UserAccessList users();
// Properties:
}